結果

問題 No.205 マージして辞書順最小
ユーザー nebukuro09nebukuro09
提出日時 2016-10-27 10:47:29
言語 PyPy2
(7.3.15)
結果
WA  
実行時間 -
コード長 219 bytes
コンパイル時間 556 ms
コンパイル使用メモリ 76,672 KB
実行使用メモリ 78,848 KB
最終ジャッジ日時 2024-11-24 04:02:41
合計ジャッジ時間 3,371 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 74 ms
75,520 KB
testcase_01 AC 74 ms
75,136 KB
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 AC 75 ms
75,396 KB
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 AC 114 ms
77,952 KB
testcase_11 AC 134 ms
78,592 KB
testcase_12 WA -
testcase_13 AC 128 ms
78,592 KB
testcase_14 AC 86 ms
75,648 KB
testcase_15 AC 84 ms
75,520 KB
testcase_16 AC 85 ms
75,648 KB
testcase_17 AC 72 ms
75,264 KB
testcase_18 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import heapq

N = input()
S = []
for i in xrange(N):
    heapq.heappush(S, raw_input())

ans = ''
while len(S) > 0:
    s = heapq.heappop(S)
    ans += s[0]
    if len(s) > 1:
        heapq.heappush(S, s[1:])
print ans
0