結果

問題 No.205 マージして辞書順最小
ユーザー tktk_snsntktk_snsn
提出日時 2021-02-11 23:48:29
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 89 ms / 5,000 ms
コード長 223 bytes
コンパイル時間 170 ms
コンパイル使用メモリ 81,888 KB
実行使用メモリ 76,544 KB
最終ジャッジ日時 2024-07-18 10:42:12
合計ジャッジ時間 2,182 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
52,608 KB
testcase_01 AC 42 ms
52,224 KB
testcase_02 AC 60 ms
64,128 KB
testcase_03 AC 62 ms
64,896 KB
testcase_04 AC 58 ms
63,872 KB
testcase_05 AC 59 ms
63,744 KB
testcase_06 AC 43 ms
52,096 KB
testcase_07 AC 77 ms
73,984 KB
testcase_08 AC 89 ms
76,032 KB
testcase_09 AC 78 ms
74,240 KB
testcase_10 AC 69 ms
69,248 KB
testcase_11 AC 71 ms
70,400 KB
testcase_12 AC 85 ms
76,288 KB
testcase_13 AC 84 ms
76,544 KB
testcase_14 AC 40 ms
52,224 KB
testcase_15 AC 39 ms
52,736 KB
testcase_16 AC 40 ms
52,352 KB
testcase_17 AC 41 ms
52,608 KB
testcase_18 AC 40 ms
52,224 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import heapq

N = int(input())
S = [input() + "{" for _ in range(N)]
heapq.heapify(S)

ans = []
while S:
    X = heapq.heappop(S)
    ans.append(X[0])
    if len(X) > 2:
        heapq.heappush(S, X[1:])

print("".join(ans))
0