結果

問題 No.292 芸名
ユーザー itezpace
提出日時 2016-05-13 17:55:54
言語 C++11(廃止可能性あり)
(gcc 13.3.0)
結果
AC  
実行時間 2 ms / 2,000 ms
コード長 372 bytes
コンパイル時間 1,193 ms
コンパイル使用メモリ 160,076 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-10-05 16:32:23
合計ジャッジ時間 1,844 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 10
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
typedef vector<int> vi;
#define REP(i, a, b) for(int i=a;i<b;++i)

int main(){
  string S;
  int t, u;
  cin >> S >> t >> u;
  if(t==u){
    S.erase(t,1);
  } else {
    if(t>u) S.erase(t,1), S.erase(u,1);
    else S.erase(u,1), S.erase(t,1);
  }
  for(char x: S) cout << x;
  cout << endl;
  return 0;
}
0