結果

問題 No.205 マージして辞書順最小
ユーザー roiti46roiti46
提出日時 2015-05-08 22:56:31
言語 Python2
(2.7.18)
結果
WA  
実行時間 -
コード長 219 bytes
コンパイル時間 62 ms
コンパイル使用メモリ 6,912 KB
実行使用メモリ 6,272 KB
最終ジャッジ日時 2024-07-05 19:12:08
合計ジャッジ時間 864 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 9 ms
6,144 KB
testcase_01 AC 8 ms
6,016 KB
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 AC 9 ms
6,016 KB
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 AC 12 ms
6,144 KB
testcase_11 AC 16 ms
6,144 KB
testcase_12 WA -
testcase_13 AC 12 ms
6,272 KB
testcase_14 AC 8 ms
6,016 KB
testcase_15 AC 9 ms
6,144 KB
testcase_16 AC 9 ms
6,144 KB
testcase_17 AC 9 ms
6,144 KB
testcase_18 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(raw_input())
S = sorted([raw_input() for i in xrange(N)])
M = sum(len(s) for s in S)
T = ""

for loop in xrange(M):
    T += S[0][0]
    S[0] = S[0][1:]
    if len(S[0]) == 0: S.pop(0)
    S = sorted(S)
print T
0