結果
| 問題 |
No.597 concat
|
| コンテスト | |
| ユーザー |
YSD_Ryoga
|
| 提出日時 | 2017-12-10 22:45:32 |
| 言語 | C++11(廃止可能性あり) (gcc 13.3.0) |
| 結果 |
AC
|
| 実行時間 | 2 ms / 2,000 ms |
| コード長 | 413 bytes |
| コンパイル時間 | 558 ms |
| コンパイル使用メモリ | 71,756 KB |
| 実行使用メモリ | 5,248 KB |
| 最終ジャッジ日時 | 2024-11-30 11:25:23 |
| 合計ジャッジ時間 | 1,260 ms |
|
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 11 |
ソースコード
//#include <bits/stdc++.h>
#include <iostream>
#include <vector>
#include <string>
#include <algorithm>
#include <cmath>
#include <map>
#include <stack>
#include <queue>
#include <cstdio>
#include <cstdlib>
#include <utility>
using namespace std;
#define INF 100000005
#define MAX 200005
string str[10];
int main(){
int n;
cin >> n;
for(int i = 0;i < n;i++){
cin >> str[i];
cout << str[i];
}
return 0;
}
YSD_Ryoga