結果
| 問題 |
No.597 concat
|
| コンテスト | |
| ユーザー |
Yut176
|
| 提出日時 | 2018-01-16 17:48:09 |
| 言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
| 結果 |
AC
|
| 実行時間 | 2 ms / 2,000 ms |
| コード長 | 386 bytes |
| コンパイル時間 | 891 ms |
| コンパイル使用メモリ | 82,288 KB |
| 実行使用メモリ | 5,248 KB |
| 最終ジャッジ日時 | 2024-12-24 04:44:45 |
| 合計ジャッジ時間 | 1,470 ms |
|
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 11 |
ソースコード
#include<iostream>
#include<vector>
#include<algorithm>
#include<cstdio>
#include<cstdlib>
#include<string>
#include<sstream>
#include<cmath>
#include<numeric>
#include<map>
#include<stack>
#include<queue>
using namespace std;
int mod = 1e9+7;
int main() {
int n; cin >> n;
for(int i=0; i<n; i++){
string c; cin >> c;
cout << c;
}
cout << endl;
return 0;
}
// EOF
Yut176