結果
| 問題 |
No.597 concat
|
| コンテスト | |
| ユーザー |
michonz4
|
| 提出日時 | 2019-10-30 13:05:59 |
| 言語 | C++11(廃止可能性あり) (gcc 13.3.0) |
| 結果 |
AC
|
| 実行時間 | 2 ms / 2,000 ms |
| コード長 | 222 bytes |
| コンパイル時間 | 471 ms |
| コンパイル使用メモリ | 56,700 KB |
| 実行使用メモリ | 5,376 KB |
| 最終ジャッジ日時 | 2024-09-14 21:46:45 |
| 合計ジャッジ時間 | 1,301 ms |
|
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 11 |
ソースコード
#include <iostream>
#include <string>
using namespace std;
int main() {
int n, i;
string ans="";
cin >> n;
for (i=0; i<n; i++){
string t;
cin >> t;
ans+=t;
}
cout << ans << endl;
return 0;
}
michonz4