結果

問題 No.292 芸名
ユーザー chiyoda
提出日時 2016-06-21 01:09:27
言語 Java
(openjdk 23)
結果
AC  
実行時間 170 ms / 2,000 ms
コード長 537 bytes
コンパイル時間 2,457 ms
コンパイル使用メモリ 86,360 KB
実行使用メモリ 42,684 KB
最終ジャッジ日時 2024-10-11 18:12:30
合計ジャッジ時間 5,327 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 10
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {
  public static void main(String[] args) {
    Scanner sc = new Scanner(System.in);
    String S = sc.next();
    int t = sc.nextInt();
    int u = sc.nextInt();
    String res = "";
    if (t == u) {
      res +=  S.substring(0, t) + S.substring(t + 1);
    } else if (t < u){
      res +=  S.substring(0, t) + S.substring(t + 1, u) + S.substring(u + 1); 
    } else {
      res +=  S.substring(0, u) + S.substring(u + 1, t) + S.substring(t + 1);
    }
    System.out.println(res);
  }  
}
0