結果
| 問題 |
No.597 concat
|
| コンテスト | |
| ユーザー |
ar
|
| 提出日時 | 2018-02-26 18:49:11 |
| 言語 | C++11(廃止可能性あり) (gcc 13.3.0) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 613 bytes |
| コンパイル時間 | 397 ms |
| コンパイル使用メモリ | 58,596 KB |
| 実行使用メモリ | 6,824 KB |
| 最終ジャッジ日時 | 2024-11-24 12:46:28 |
| 合計ジャッジ時間 | 905 ms |
|
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | WA * 3 |
| other | WA * 11 |
ソースコード
#include <iostream>
#include <string>
#include <vector>
using namespace std;
//変数デバッグ
#define DEB(variable) cout << #variable << "=" << variable << endl
//for簡易表記(引数ミス防止)
#define INFOR(inc, a, b) for (int inc = (a); (inc) < (b); (inc)++) //incをaにし、b-a回(iがb未満の間)処理を行う
#define DEFOR(inc, a, b) for ((inc) = (a); (inc) > (b); (inc)--) //incをaにし、a-b回(iがbより大きい間)処理を行う
int main()
{
int N;
cin >> N;
DEB(N);
string c;
INFOR(i, 0, N)
{
cin >> c;
cout << c;
}
return 0;
}
ar