할껀하고놀자

[백준] 9093 단어 뒤집기 본문

[IT]/백준

[백준] 9093 단어 뒤집기

working_hard 2019. 9. 20. 19:11
728x90

파이썬의 문자열 라이브러리 처리는 짱인거같다.

t = int(input())
for i in range(t):
    str = input()
    li = list(str.split(' '))
    for j in li:
        print(j[::-1],end=' ')
    print()

'[IT] > 백준' 카테고리의 다른 글

[백준] 2530번 인공지능 시계  (0) 2019.09.21
[백준] 2525번 오븐 시계  (0) 2019.09.21
[백준] 2588번 곱셈  (0) 2019.09.20
[백준] 9095번 1, 2, 3 더하기 (DP)  (0) 2019.09.11
[백준] 11727번 2Xn 타일링 2 (DP)  (0) 2019.09.11
Comments