結果

問題 No.205 マージして辞書順最小
ユーザー nebukuro09nebukuro09
提出日時 2016-10-27 10:47:29
言語 PyPy2
(7.3.15)
結果
WA  
実行時間 -
コード長 219 bytes
コンパイル時間 338 ms
コンパイル使用メモリ 77,304 KB
実行使用メモリ 79,492 KB
最終ジャッジ日時 2024-05-03 06:19:48
合計ジャッジ時間 3,063 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 69 ms
75,776 KB
testcase_01 AC 68 ms
75,896 KB
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 AC 71 ms
75,528 KB
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 AC 90 ms
77,952 KB
testcase_11 AC 111 ms
79,000 KB
testcase_12 WA -
testcase_13 AC 109 ms
78,876 KB
testcase_14 AC 72 ms
75,392 KB
testcase_15 AC 72 ms
75,520 KB
testcase_16 AC 70 ms
75,776 KB
testcase_17 AC 70 ms
75,904 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