結果
問題 | No.597 concat |
ユーザー |
|
提出日時 | 2018-04-22 11:55:59 |
言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 2 ms / 2,000 ms |
コード長 | 236 bytes |
コンパイル時間 | 572 ms |
コンパイル使用メモリ | 63,872 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-06-27 05:37:06 |
合計ジャッジ時間 | 1,107 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 11 |
ソースコード
#include<iostream>#include<string>using namespace std;int main(){string s;int n;getline(cin, s);n = stoi(s);while(n-- > 0){getline(cin, s);cout << s;}cout << endl;return 0;}