結果
問題 | No.597 concat |
ユーザー | cider |
提出日時 | 2018-01-05 19:25:51 |
言語 | C++11 (gcc 13.3.0) |
結果 |
AC
|
実行時間 | 2 ms / 2,000 ms |
コード長 | 315 bytes |
コンパイル時間 | 747 ms |
コンパイル使用メモリ | 66,884 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2024-12-23 06:09:48 |
合計ジャッジ時間 | 1,482 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 11 |
ソースコード
#include<iostream> #include<string> #include<vector> #include<algorithm> #include<functional> #include<fstream> #define For(N) for (int i = 0; i < N; i++) using namespace std; using ll = long long int; using vi = vector<int>; int main() { int N; string s; cin >> N; while (cin >> s)cout << s; cout << endl; }