結果
問題 | No.597 concat |
ユーザー |
|
提出日時 | 2017-11-28 21:00:55 |
言語 | C++17 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 3 ms / 2,000 ms |
コード長 | 187 bytes |
コンパイル時間 | 544 ms |
コンパイル使用メモリ | 67,600 KB |
最終ジャッジ日時 | 2025-01-05 04:31:39 |
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 11 |
ソースコード
#include<iostream>#include<string>using namespace std;int main() {int n; cin >> n;string ans;for (int i = 0; i < n; i++) { string s; cin >> s; ans += s; }cout << ans << endl;}