結果

問題 No.205 マージして辞書順最小
ユーザー RyutoRyuto
提出日時 2018-07-27 16:30:03
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 286 bytes
コンパイル時間 76 ms
コンパイル使用メモリ 10,740 KB
実行使用メモリ 7,972 KB
最終ジャッジ日時 2023-09-13 18:54:05
合計ジャッジ時間 1,352 ms
ジャッジサーバーID
(参考情報)
judge14 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 15 ms
7,864 KB
testcase_01 AC 16 ms
7,800 KB
testcase_02 WA -
testcase_03 AC 16 ms
7,972 KB
testcase_04 AC 16 ms
7,852 KB
testcase_05 AC 17 ms
7,856 KB
testcase_06 AC 15 ms
7,864 KB
testcase_07 AC 19 ms
7,872 KB
testcase_08 WA -
testcase_09 WA -
testcase_10 AC 23 ms
7,972 KB
testcase_11 AC 23 ms
7,972 KB
testcase_12 AC 21 ms
7,828 KB
testcase_13 AC 18 ms
7,864 KB
testcase_14 AC 16 ms
7,828 KB
testcase_15 AC 17 ms
7,948 KB
testcase_16 AC 16 ms
7,840 KB
testcase_17 AC 16 ms
7,836 KB
testcase_18 AC 16 ms
7,864 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

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

print(ans)
0