結果

問題 No.205 マージして辞書順最小
ユーザー rlangevinrlangevin
提出日時 2023-08-30 08:54:49
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 370 ms / 5,000 ms
コード長 290 bytes
コンパイル時間 175 ms
コンパイル使用メモリ 81,908 KB
実行使用メモリ 76,348 KB
最終ジャッジ日時 2024-06-10 09:22:27
合計ジャッジ時間 2,735 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,704 KB
testcase_01 AC 37 ms
52,828 KB
testcase_02 AC 53 ms
63,432 KB
testcase_03 AC 60 ms
69,324 KB
testcase_04 AC 54 ms
64,748 KB
testcase_05 AC 54 ms
65,808 KB
testcase_06 AC 38 ms
53,712 KB
testcase_07 AC 91 ms
76,348 KB
testcase_08 AC 72 ms
73,060 KB
testcase_09 AC 84 ms
75,832 KB
testcase_10 AC 370 ms
76,232 KB
testcase_11 AC 293 ms
76,304 KB
testcase_12 AC 221 ms
76,332 KB
testcase_13 AC 112 ms
75,896 KB
testcase_14 AC 39 ms
53,828 KB
testcase_15 AC 38 ms
53,616 KB
testcase_16 AC 37 ms
52,316 KB
testcase_17 AC 37 ms
53,700 KB
testcase_18 AC 37 ms
52,664 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
cnt = 0
S = []
for i in range(N):
    temp = [ord(s) - ord("a") for s in input()]
    temp.append(27)
    S.append(temp)
    cnt += len(temp) - 1

S.sort()
ans = []
for _ in range(cnt):
    v = S[0].pop(0)
    ans.append(chr(v + ord("a")))
    S.sort()

print(*ans, sep="")
0