結果

問題 No.205 マージして辞書順最小
ユーザー maspy
提出日時 2020-03-03 23:45:03
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
AC  
実行時間 28 ms / 5,000 ms
コード長 468 bytes
コンパイル時間 132 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 10,752 KB
最終ジャッジ日時 2024-10-13 23:23:05
合計ジャッジ時間 1,393 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 4
other AC * 15
権限があれば一括ダウンロードができます

ソースコード

diff #

#!/usr/bin/env python3
# %%
import sys
read = sys.stdin.buffer.read
readline = sys.stdin.buffer.readline
readlines = sys.stdin.buffer.readlines
from heapq import heapify, heappop, heappush

# %%
N = int(readline())
words = read().decode().split()

# %%
words = [x + '~' for x in words]
heapify(words)

# %%
answer = []
while True:
    w = heappop(words)
    if w[0] == '~':
        break
    answer.append(w[0])
    heappush(words, w[1:])

# %%
print(''.join(answer))
0