結果

問題 No.292 芸名
ユーザー aaaaaaiu
提出日時 2019-07-27 13:29:37
言語 C++17
(gcc 13.3.0 + boost 1.87.0)
結果
WA  
実行時間 -
コード長 270 bytes
コンパイル時間 2,555 ms
コンパイル使用メモリ 193,112 KB
最終ジャッジ日時 2025-01-07 09:36:48
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample WA * 3
other WA * 10
権限があれば一括ダウンロードができます

ソースコード

diff #

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

int main() {
    string s;
    int t, u;
    cin>>s>>t>>u;
    string ans;
    for(int i=0;i<s.size();i++) {
        if (i==t||i==u)continue;
        ans+=s[i];
    }
    cout<<s<<endl;
    return 0;
}
0