結果
問題 | No.597 concat |
ユーザー |
![]() |
提出日時 | 2017-11-24 22:31:09 |
言語 | C++11(廃止可能性あり) (gcc 13.3.0) |
結果 |
AC
|
実行時間 | 2 ms / 2,000 ms |
コード長 | 260 bytes |
コンパイル時間 | 1,154 ms |
コンパイル使用メモリ | 158,192 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2024-11-27 07:24:29 |
合計ジャッジ時間 | 1,732 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 11 |
ソースコード
#include <bits/stdc++.h> using namespace std; #define repl(i,a,b) for(int i=(int)a;i<(int)b;i++) #define rep(i,n) repl(i,0,n) int main(){ int n; string res; cin>>n; rep(i,n){ string t; cin>>t; res+=t; } cout<<res<<endl; return 0; }