結果

問題 No.205 マージして辞書順最小
ユーザー 👑 rin204rin204
提出日時 2022-07-06 08:02:41
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 87 ms / 5,000 ms
コード長 232 bytes
コンパイル時間 254 ms
コンパイル使用メモリ 82,080 KB
実行使用メモリ 76,624 KB
最終ジャッジ日時 2024-12-20 02:16:14
合計ジャッジ時間 2,497 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
52,864 KB
testcase_01 AC 40 ms
53,444 KB
testcase_02 AC 61 ms
67,236 KB
testcase_03 AC 62 ms
68,716 KB
testcase_04 AC 58 ms
65,376 KB
testcase_05 AC 61 ms
66,564 KB
testcase_06 AC 41 ms
53,904 KB
testcase_07 AC 84 ms
76,460 KB
testcase_08 AC 85 ms
76,624 KB
testcase_09 AC 83 ms
76,412 KB
testcase_10 AC 72 ms
73,052 KB
testcase_11 AC 74 ms
73,684 KB
testcase_12 AC 86 ms
76,392 KB
testcase_13 AC 87 ms
76,264 KB
testcase_14 AC 40 ms
53,812 KB
testcase_15 AC 41 ms
52,672 KB
testcase_16 AC 40 ms
53,292 KB
testcase_17 AC 41 ms
52,756 KB
testcase_18 AC 40 ms
52,876 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from heapq import *

n = int(input())
hq = [input() + chr(130) for _ in range(n)]
heapify(hq)
ans = []
while hq:
    S = heappop(hq)
    ans.append(S[0])
    S = S[1:]
    if len(S) >= 2:
        heappush(hq, S)
print(*ans, sep="")
0