結果

問題 No.597 concat
ユーザー Bioinfo_KBioinfo_K
提出日時 2017-11-24 22:21:35
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 19 ms / 2,000 ms
コード長 290 bytes
コンパイル時間 82 ms
コンパイル使用メモリ 10,696 KB
実行使用メモリ 8,608 KB
最終ジャッジ日時 2023-08-18 04:36:36
合計ジャッジ時間 1,256 ms
ジャッジサーバーID
(参考情報)
judge11 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 19 ms
8,452 KB
testcase_01 AC 18 ms
8,464 KB
testcase_02 AC 19 ms
8,536 KB
testcase_03 AC 19 ms
8,512 KB
testcase_04 AC 19 ms
8,476 KB
testcase_05 AC 19 ms
8,536 KB
testcase_06 AC 19 ms
8,480 KB
testcase_07 AC 18 ms
8,424 KB
testcase_08 AC 18 ms
8,608 KB
testcase_09 AC 18 ms
8,332 KB
testcase_10 AC 18 ms
8,420 KB
testcase_11 AC 18 ms
8,428 KB
testcase_12 AC 19 ms
8,540 KB
testcase_13 AC 18 ms
8,448 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys,collections
sys.setrecursionlimit(10**7)
def Is(): return [int(x) for x in sys.stdin.readline().split()]
def Ss(): return sys.stdin.readline().split()
def I(): return int(sys.stdin.readline())
def S(): return input()

n = I()
ans = ""
for _ in range(n):
    ans += S()
print(ans)
0