結果

問題 No.597 concat
ユーザー pluto77pluto77
提出日時 2017-11-25 07:55:19
言語 Python2
(2.7.18)
結果
AC  
実行時間 11 ms / 2,000 ms
コード長 90 bytes
コンパイル時間 454 ms
コンパイル使用メモリ 7,040 KB
実行使用メモリ 6,820 KB
最終ジャッジ日時 2024-11-27 09:35:23
合計ジャッジ時間 986 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 11
権限があれば一括ダウンロードができます

ソースコード

diff #

#yuki_597

n=int(raw_input())
res=''
for i in xrange(n):
 s=raw_input()
 res+=s
print res
0