結果

問題 No.292 芸名
ユーザー kenji_shioyakenji_shioya
提出日時 2016-06-03 15:49:45
言語 Java21
(openjdk 21)
結果
AC  
実行時間 123 ms / 2,000 ms
コード長 442 bytes
コンパイル時間 3,164 ms
コンパイル使用メモリ 85,760 KB
実行使用メモリ 41,136 KB
最終ジャッジ日時 2024-10-08 06:18:48
合計ジャッジ時間 5,418 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 115 ms
40,764 KB
testcase_01 AC 116 ms
41,012 KB
testcase_02 AC 114 ms
41,136 KB
testcase_03 AC 114 ms
41,128 KB
testcase_04 AC 119 ms
41,044 KB
testcase_05 AC 106 ms
39,992 KB
testcase_06 AC 100 ms
39,952 KB
testcase_07 AC 110 ms
41,080 KB
testcase_08 AC 110 ms
40,996 KB
testcase_09 AC 123 ms
41,052 KB
testcase_10 AC 107 ms
40,816 KB
testcase_11 AC 113 ms
41,004 KB
testcase_12 AC 109 ms
40,736 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Exercise54{
  public static void main (String[] args){

    Scanner sc = new Scanner(System.in);

    String str = sc.next();

    int a = sc.nextInt();
    int b = sc.nextInt();

    String[] strArray = str.split("");

    strArray[a] = "";
    strArray[b] = "";

    String newStr = "";
    for (int i = 0; i < strArray.length; i++){
      newStr += strArray[i];
    }
    System.out.println(newStr);
  }
}
0