結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
52,224 KB
testcase_01 AC 43 ms
52,480 KB
testcase_02 AC 67 ms
65,920 KB
testcase_03 AC 66 ms
66,304 KB
testcase_04 AC 63 ms
64,896 KB
testcase_05 AC 67 ms
65,408 KB
testcase_06 AC 43 ms
52,352 KB
testcase_07 AC 92 ms
76,416 KB
testcase_08 AC 92 ms
76,800 KB
testcase_09 AC 92 ms
76,800 KB
testcase_10 AC 85 ms
72,960 KB
testcase_11 AC 86 ms
73,472 KB
testcase_12 AC 96 ms
76,416 KB
testcase_13 AC 93 ms
76,288 KB
testcase_14 AC 43 ms
52,992 KB
testcase_15 AC 45 ms
52,224 KB
testcase_16 AC 42 ms
52,096 KB
testcase_17 AC 43 ms
52,096 KB
testcase_18 AC 42 ms
52,224 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