結果

問題 No.597 concat
ユーザー haya_walkerhaya_walker
提出日時 2017-12-24 15:04:40
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 112 ms / 2,000 ms
コード長 157 bytes
コンパイル時間 116 ms
コンパイル使用メモリ 10,668 KB
実行使用メモリ 20,756 KB
最終ジャッジ日時 2023-08-22 18:00:39
合計ジャッジ時間 4,649 ms
ジャッジサーバーID
(参考情報)
judge12 / judge11
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 109 ms
20,536 KB
testcase_01 AC 107 ms
20,336 KB
testcase_02 AC 111 ms
20,544 KB
testcase_03 AC 109 ms
20,604 KB
testcase_04 AC 110 ms
20,528 KB
testcase_05 AC 109 ms
20,544 KB
testcase_06 AC 109 ms
20,540 KB
testcase_07 AC 111 ms
20,528 KB
testcase_08 AC 110 ms
20,592 KB
testcase_09 AC 109 ms
20,756 KB
testcase_10 AC 109 ms
20,640 KB
testcase_11 AC 109 ms
20,556 KB
testcase_12 AC 110 ms
20,524 KB
testcase_13 AC 112 ms
20,632 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from pip._vendor.distlib.compat import raw_input

N = int(raw_input())

result = ""
for i in range(N):
    s = str(raw_input())
    result += s
print(result)
0