結果

問題 No.597 concat
ユーザー Takayuki HirotaTakayuki Hirota
提出日時 2021-01-14 10:51:18
言語 PyPy3
(7.3.13)
結果
AC  
実行時間 62 ms / 2,000 ms
コード長 59 bytes
コンパイル時間 701 ms
コンパイル使用メモリ 87,152 KB
実行使用メモリ 71,556 KB
最終ジャッジ日時 2023-08-15 16:26:54
合計ジャッジ時間 2,299 ms
ジャッジサーバーID
(参考情報)
judge15 / judge12
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 61 ms
71,388 KB
testcase_01 AC 60 ms
71,548 KB
testcase_02 AC 61 ms
71,372 KB
testcase_03 AC 61 ms
71,528 KB
testcase_04 AC 62 ms
71,420 KB
testcase_05 AC 62 ms
71,336 KB
testcase_06 AC 61 ms
71,276 KB
testcase_07 AC 62 ms
71,372 KB
testcase_08 AC 62 ms
71,552 KB
testcase_09 AC 62 ms
71,160 KB
testcase_10 AC 61 ms
71,556 KB
testcase_11 AC 62 ms
71,428 KB
testcase_12 AC 61 ms
71,556 KB
testcase_13 AC 61 ms
71,520 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n=int(input())
s=''
for _ in range(n):
	s+=input()
print(s)
0