結果

問題 No.2399 This Is Truly Final Edition
ユーザー erbowl
提出日時 2023-08-04 21:20:52
言語 C++17
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 2 ms / 2,000 ms
コード長 294 bytes
コンパイル時間 1,566 ms
コンパイル使用メモリ 193,392 KB
最終ジャッジ日時 2025-02-15 21:59:17
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 5
権限があれば一括ダウンロードができます

ソースコード

diff #

typedef long long ll;
typedef long double ld;

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

signed main(){
    string s,t;
    std::cin >> s>>t;
    ll n;
    std::cin >> n;
    for (int i = 0; i < n; i++) {
        s += "_"+t;
    }
    std::cout << s << std::endl;
};
0