https://www.acmicpc.net/problem/13417
문자열 그리디 문제이다.
# https://www.acmicpc.net/problem/13417
import sys
input = sys.stdin.readline
TC = int(input())
for _ in range(TC):
N = int(input())
s = list(map(str,input().split()))
result = s.pop(0)
while s:
tmp = s.pop(0)
if tmp > result[0]:
result = result + tmp
else:
result = tmp + result
print(result)
회고,
문제를 잘읽자...
'PS' 카테고리의 다른 글
[BOJ] Python 백준 밤양갱(31926) (0) | 2024.11.13 |
---|---|
[BOJ] Python 백준 게임을 만든 동준이(2847) (0) | 2024.11.12 |
[BOJ] Python 백준 토마토(7569) (2) | 2024.11.10 |
[BOJ] Python 백준 Yes or yes(25195) (0) | 2024.11.08 |
[BOJ] Python 백준 특정 거리의 도시 찾기(18352) (0) | 2024.11.07 |
댓글