結果

問題 No.292 芸名
ユーザー alchemin
提出日時 2019-09-15 10:22:16
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 2 ms / 2,000 ms
コード長 296 bytes
コンパイル時間 513 ms
コンパイル使用メモリ 63,360 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-07-06 22:40:28
合計ジャッジ時間 1,002 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 10
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>

using namespace std;

int main() {
    string s;
    int t, u;
    
    cin >> s >> t >> u;
    
    if (t == u) {
        cout << s.erase(t, 1) << endl;
    } else {
        s.erase(min(u, t), 1);
        cout << s.erase(max(u, t) - 1, 1) << endl;
    }
    
    return 0;
}
0