結果

問題 No.205 マージして辞書順最小
ユーザー qibqib
提出日時 2023-02-16 17:02:07
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 82 ms / 5,000 ms
コード長 322 bytes
コンパイル時間 295 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 74,112 KB
最終ジャッジ日時 2024-07-18 17:14:20
合計ジャッジ時間 2,226 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
52,096 KB
testcase_01 AC 40 ms
52,224 KB
testcase_02 AC 64 ms
64,896 KB
testcase_03 AC 66 ms
65,664 KB
testcase_04 AC 67 ms
64,896 KB
testcase_05 AC 60 ms
63,104 KB
testcase_06 AC 40 ms
52,224 KB
testcase_07 AC 72 ms
70,144 KB
testcase_08 AC 68 ms
68,992 KB
testcase_09 AC 70 ms
69,248 KB
testcase_10 AC 73 ms
69,632 KB
testcase_11 AC 78 ms
71,680 KB
testcase_12 AC 82 ms
74,112 KB
testcase_13 AC 72 ms
69,632 KB
testcase_14 AC 41 ms
52,352 KB
testcase_15 AC 39 ms
52,224 KB
testcase_16 AC 40 ms
52,096 KB
testcase_17 AC 40 ms
51,968 KB
testcase_18 AC 40 ms
52,352 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import heapq

n = int(input())

hp = []
for _ in range(n):
  si = input()
  heapq.heappush(hp, si + "~")

ans = []
while len(hp) > 0:
  cur = heapq.heappop(hp)
  if len(cur) == 1:
    continue
  elif len(hp) == 0:
    ans.append(cur[:-1])
  else:
    ans.append(cur[0])
    heapq.heappush(hp, cur[1:])

print("".join(ans))
0