結果

問題 No.205 マージして辞書順最小
ユーザー RyutoRyuto
提出日時 2018-07-27 16:33:21
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 71 ms / 5,000 ms
コード長 290 bytes
コンパイル時間 148 ms
コンパイル使用メモリ 82,448 KB
実行使用メモリ 64,344 KB
最終ジャッジ日時 2024-07-01 03:32:18
合計ジャッジ時間 1,748 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
52,628 KB
testcase_01 AC 41 ms
53,404 KB
testcase_02 AC 40 ms
53,580 KB
testcase_03 AC 42 ms
55,068 KB
testcase_04 AC 40 ms
53,928 KB
testcase_05 AC 40 ms
53,888 KB
testcase_06 AC 39 ms
51,948 KB
testcase_07 AC 47 ms
64,128 KB
testcase_08 AC 46 ms
64,336 KB
testcase_09 AC 47 ms
63,844 KB
testcase_10 AC 71 ms
64,344 KB
testcase_11 AC 60 ms
64,028 KB
testcase_12 AC 54 ms
64,040 KB
testcase_13 AC 47 ms
62,868 KB
testcase_14 AC 39 ms
51,812 KB
testcase_15 AC 39 ms
51,692 KB
testcase_16 AC 38 ms
52,356 KB
testcase_17 AC 39 ms
52,188 KB
testcase_18 AC 39 ms
52,480 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
words = []
for i in range(n):
    words.append(input().strip())
words = [w+'z'*50 for w in words]

ans = ''
while len(words) > 0:
    words.sort()
    ans += words[0][0]
    if len(words[0]) == 51:
        words.pop(0)
    else:
        words[0] = words[0][1:]

print(ans)
0