結果

問題 No.205 マージして辞書順最小
ユーザー convexineqconvexineq
提出日時 2020-12-18 19:47:35
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 77 ms / 5,000 ms
コード長 243 bytes
コンパイル時間 187 ms
コンパイル使用メモリ 82,516 KB
実行使用メモリ 74,068 KB
最終ジャッジ日時 2024-09-21 09:15:41
合計ジャッジ時間 2,042 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
53,100 KB
testcase_01 AC 41 ms
52,472 KB
testcase_02 AC 53 ms
63,720 KB
testcase_03 AC 53 ms
63,056 KB
testcase_04 AC 58 ms
65,968 KB
testcase_05 AC 56 ms
65,280 KB
testcase_06 AC 40 ms
52,956 KB
testcase_07 AC 62 ms
68,984 KB
testcase_08 AC 63 ms
69,828 KB
testcase_09 AC 62 ms
69,940 KB
testcase_10 AC 67 ms
71,080 KB
testcase_11 AC 74 ms
72,808 KB
testcase_12 AC 77 ms
74,068 KB
testcase_13 AC 61 ms
70,024 KB
testcase_14 AC 41 ms
52,880 KB
testcase_15 AC 40 ms
53,564 KB
testcase_16 AC 39 ms
53,256 KB
testcase_17 AC 39 ms
52,864 KB
testcase_18 AC 40 ms
52,200 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
r = 0
from heapq import *
q = []
for _ in range(n):
    s = input()+"{"
    q.append(s)
    r += len(s)-1
heapify(q)
ans = []
for i in range(r):
    s = heappop(q)
    ans.append(s[0])
    heappush(q,s[1:])
print("".join(ans))
0