結果

問題 No.205 マージして辞書順最小
ユーザー yaoshimaxyaoshimax
提出日時 2015-05-24 14:35:01
言語 PyPy2
(7.3.15)
結果
AC  
実行時間 130 ms / 5,000 ms
コード長 231 bytes
コンパイル時間 463 ms
コンパイル使用メモリ 76,688 KB
実行使用メモリ 78,992 KB
最終ジャッジ日時 2024-07-06 06:41:01
合計ジャッジ時間 2,860 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 72 ms
75,964 KB
testcase_01 AC 76 ms
75,412 KB
testcase_02 AC 100 ms
77,576 KB
testcase_03 AC 90 ms
78,184 KB
testcase_04 AC 89 ms
77,588 KB
testcase_05 AC 91 ms
77,464 KB
testcase_06 AC 68 ms
75,556 KB
testcase_07 AC 130 ms
78,860 KB
testcase_08 AC 99 ms
78,232 KB
testcase_09 AC 98 ms
78,840 KB
testcase_10 AC 93 ms
78,084 KB
testcase_11 AC 96 ms
77,992 KB
testcase_12 AC 107 ms
78,736 KB
testcase_13 AC 109 ms
78,992 KB
testcase_14 AC 72 ms
75,388 KB
testcase_15 AC 68 ms
75,424 KB
testcase_16 AC 68 ms
75,696 KB
testcase_17 AC 69 ms
75,516 KB
testcase_18 AC 68 ms
75,660 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from heapq import heappop,heappush
N=int(raw_input())
hp=[]
for i in range(N):
    S=raw_input()
    heappush(hp,S+"{")
ans=""
while len(hp)!=0:
    s=heappop(hp)
    ans+=s[0]
    if len(s)>2:
        heappush(hp,s[1:])
print ans
0