結果

問題 No.205 マージして辞書順最小
ユーザー 👑 rin204rin204
提出日時 2022-07-06 07:45:52
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 211 bytes
コンパイル時間 182 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 76,672 KB
最終ジャッジ日時 2024-05-10 04:58:51
合計ジャッジ時間 2,268 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 46 ms
52,608 KB
testcase_01 AC 44 ms
52,096 KB
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 AC 41 ms
52,352 KB
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 AC 74 ms
72,960 KB
testcase_11 AC 95 ms
76,528 KB
testcase_12 WA -
testcase_13 AC 91 ms
76,584 KB
testcase_14 AC 42 ms
52,992 KB
testcase_15 AC 40 ms
52,224 KB
testcase_16 AC 42 ms
52,608 KB
testcase_17 AC 42 ms
52,608 KB
testcase_18 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

from heapq import *

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