結果

問題 No.2399 This Is Truly Final Edition
ユーザー hoge
提出日時 2023-08-12 17:50:00
言語 C++17
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 2 ms / 2,000 ms
コード長 607 bytes
コンパイル時間 2,148 ms
コンパイル使用メモリ 194,028 KB
最終ジャッジ日時 2025-02-16 07:24:55
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 5
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
using ll = long long;
template<class T>
using V = std::vector<T>;
#define REP(i, n) for (ll i = (ll)0; i < (ll)(n); i++)
#define REPS(i, s, n) for (ll i = (ll)(s); i < (ll)(n); i++)
#define RREP(i, n) for (ll i = (ll)(n); i > (ll)0; i--)
#define RREPS(i, s, n) for (ll i = (ll)(n); i > (ll)(s); i--)
#define ALL(c) std::begin((c)), std::end((c))
struct io {
    io() { cin.tie(0)->sync_with_stdio(0); }
} caller;

int main() {
    string s, t;
    int n;
    cin >> s >> t >> n;

    cout << s;
    REP (i, n) cout << "_" + t;
    cout << endl;

    return 0;
}
0