結果

問題 No.292 芸名
ユーザー chiyodachiyoda
提出日時 2016-06-21 01:09:27
言語 Java21
(openjdk 21)
結果
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
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 170 ms
42,448 KB
testcase_01 AC 168 ms
42,316 KB
testcase_02 AC 169 ms
42,496 KB
testcase_03 AC 170 ms
42,348 KB
testcase_04 AC 167 ms
42,348 KB
testcase_05 AC 166 ms
42,376 KB
testcase_06 AC 168 ms
42,684 KB
testcase_07 AC 165 ms
42,492 KB
testcase_08 AC 166 ms
42,648 KB
testcase_09 AC 152 ms
42,248 KB
testcase_10 AC 169 ms
42,396 KB
testcase_11 AC 167 ms
42,268 KB
testcase_12 AC 169 ms
42,636 KB
権限があれば一括ダウンロードができます

ソースコード

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