結果

問題 No.292 芸名
ユーザー Tsukasa_TypeTsukasa_Type
提出日時 2018-02-10 14:54:07
言語 Java21
(openjdk 21)
結果
AC  
実行時間 159 ms / 2,000 ms
コード長 364 bytes
コンパイル時間 2,386 ms
コンパイル使用メモリ 75,708 KB
実行使用メモリ 42,484 KB
最終ジャッジ日時 2024-10-13 11:34:15
合計ジャッジ時間 5,064 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 134 ms
41,844 KB
testcase_01 AC 135 ms
41,672 KB
testcase_02 AC 150 ms
42,204 KB
testcase_03 AC 148 ms
42,228 KB
testcase_04 AC 138 ms
42,012 KB
testcase_05 AC 135 ms
41,996 KB
testcase_06 AC 145 ms
42,484 KB
testcase_07 AC 145 ms
42,176 KB
testcase_08 AC 144 ms
42,276 KB
testcase_09 AC 151 ms
42,180 KB
testcase_10 AC 147 ms
42,184 KB
testcase_11 AC 159 ms
42,092 KB
testcase_12 AC 154 ms
41,904 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
	static Scanner sc = new Scanner(System.in);
	public static void main(String[] args) {
		String s = sc.next();
		int b = sc.nextInt();
		int c = sc.nextInt();
		String ans = "";
		for (int i=0; i<s.length(); i++) {
			char ch = s.charAt(i);
			if (i==b || i==c) {continue;}
			ans += ch;
		}
		System.out.println(ans);
	}
}
0