結果

問題 No.205 マージして辞書順最小
ユーザー rlangevinrlangevin
提出日時 2023-08-30 08:54:49
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 329 ms / 5,000 ms
コード長 290 bytes
コンパイル時間 249 ms
コンパイル使用メモリ 82,288 KB
実行使用メモリ 76,780 KB
最終ジャッジ日時 2025-01-01 18:25:16
合計ジャッジ時間 2,796 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
52,720 KB
testcase_01 AC 30 ms
53,028 KB
testcase_02 AC 45 ms
63,284 KB
testcase_03 AC 51 ms
69,812 KB
testcase_04 AC 50 ms
64,644 KB
testcase_05 AC 47 ms
65,820 KB
testcase_06 AC 31 ms
53,920 KB
testcase_07 AC 80 ms
76,428 KB
testcase_08 AC 61 ms
73,264 KB
testcase_09 AC 73 ms
76,296 KB
testcase_10 AC 329 ms
76,680 KB
testcase_11 AC 263 ms
76,780 KB
testcase_12 AC 205 ms
76,328 KB
testcase_13 AC 99 ms
76,316 KB
testcase_14 AC 32 ms
53,784 KB
testcase_15 AC 31 ms
53,220 KB
testcase_16 AC 31 ms
52,396 KB
testcase_17 AC 30 ms
52,764 KB
testcase_18 AC 30 ms
53,080 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