結果

問題 No.292 芸名
ユーザー michonz4
提出日時 2019-06-12 10:28:11
言語 C++11(廃止可能性あり)
(gcc 13.3.0)
結果
WA  
実行時間 -
コード長 265 bytes
コンパイル時間 594 ms
コンパイル使用メモリ 55,248 KB
実行使用メモリ 6,820 KB
最終ジャッジ日時 2024-10-09 16:25:43
合計ジャッジ時間 1,413 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2 WA * 1
other AC * 8 RE * 2
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <string>

using namespace std;

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

  if (t!=u) {
    s.erase(s.begin()+t);
    s.erase(s.begin()+u-1);
  } else {
    s.erase(s.begin()+t);
  }

  cout << s << endl;
  return 0;
}
0