지나가던 개발자
[Python] 백준 12605번(단어순서 뒤집기) 문제 풀이 본문
for i in range(int(input())):
print("Case #%d:"%(i+1), " ".join(list(reversed(input().split(" ")))))
'PS > Python' 카테고리의 다른 글
[Python] 백준 4659번(비밀번호 발음하기) 문제 풀이 (0) | 2022.11.14 |
---|---|
[Python] 백준 10821번(정수의 개수) 문제 풀이 (0) | 2022.11.14 |
[Python] 백준 10384번(팬그램) 문제 풀이 (0) | 2022.11.14 |
[Python] 백준 11536번(줄 세우기) 문제 풀이 (0) | 2022.11.14 |
[Python] 백준 25206번(너의 평점은) 문제 풀이 (0) | 2022.11.13 |
Comments