結果

問題 No.597 concat
ユーザー horoyoisawahoroyoisawa
提出日時 2022-01-20 19:46:24
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 2 ms / 2,000 ms
コード長 215 bytes
コンパイル時間 1,747 ms
コンパイル使用メモリ 166,428 KB
実行使用メモリ 6,820 KB
最終ジャッジ日時 2024-11-24 03:47:16
合計ジャッジ時間 2,604 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 11
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;

int main() {
    int n;
    cin >> n;
    string out;
    for(int i=0;i<n;i++) {
        string s;
        cin >> s;
        out += s;
    }

    cout << out << '\n';
}
0