結果

問題 No.292 芸名
ユーザー r.suzukir.suzuki
提出日時 2015-12-11 15:19:11
言語 Java21
(openjdk 21)
結果
AC  
実行時間 137 ms / 2,000 ms
コード長 414 bytes
コンパイル時間 3,771 ms
コンパイル使用メモリ 75,100 KB
実行使用メモリ 41,536 KB
最終ジャッジ日時 2024-09-15 07:57:07
合計ジャッジ時間 6,412 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 132 ms
41,052 KB
testcase_01 AC 117 ms
40,040 KB
testcase_02 AC 133 ms
41,012 KB
testcase_03 AC 129 ms
41,332 KB
testcase_04 AC 132 ms
41,304 KB
testcase_05 AC 131 ms
41,036 KB
testcase_06 AC 130 ms
41,044 KB
testcase_07 AC 132 ms
41,132 KB
testcase_08 AC 129 ms
41,072 KB
testcase_09 AC 135 ms
41,536 KB
testcase_10 AC 137 ms
40,924 KB
testcase_11 AC 120 ms
39,836 KB
testcase_12 AC 131 ms
41,040 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class No_292second {

	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		String stageName = sc.next();
		int advice_B = sc.nextInt();
		int advice_C = sc.nextInt();
		
		for(int i = 0;i < stageName.length();i++){
			if(i != advice_B && i != advice_C){
				System.out.print(stageName.charAt(i));
			}
		}
		System.out.println();
		sc.close();

	}

}
0