結果

問題 No.292 芸名
ユーザー koukonkokoukonko
提出日時 2015-12-23 16:37:10
言語 Java21
(openjdk 21)
結果
AC  
実行時間 100 ms / 2,000 ms
コード長 572 bytes
コンパイル時間 3,033 ms
コンパイル使用メモリ 80,744 KB
実行使用メモリ 39,768 KB
最終ジャッジ日時 2024-09-18 21:45:45
合計ジャッジ時間 4,379 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 98 ms
39,524 KB
testcase_01 AC 83 ms
37,940 KB
testcase_02 AC 87 ms
37,912 KB
testcase_03 AC 100 ms
38,140 KB
testcase_04 AC 91 ms
39,688 KB
testcase_05 AC 99 ms
39,768 KB
testcase_06 AC 98 ms
39,736 KB
testcase_07 AC 99 ms
38,120 KB
testcase_08 AC 89 ms
37,772 KB
testcase_09 AC 87 ms
38,208 KB
testcase_10 AC 87 ms
38,304 KB
testcase_11 AC 85 ms
38,120 KB
testcase_12 AC 83 ms
37,932 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package yukicoder;

import java.io.BufferedReader;
import java.io.InputStreamReader;

public class Main {
	public static void main(String[] args) {
		BufferedReader buff = new BufferedReader(new InputStreamReader(System.in));

		try {
			String[] box = buff.readLine().split(" ");
			int t = Integer.parseInt(box[1]);
			int u = Integer.parseInt(box[2]);

			String ans = "";
			for(int i = 0; i < box[0].length(); ++i){
				if(i != t && i != u){
					ans += box[0].charAt(i);
				}
			}
			System.out.println(ans);
		} catch (Exception e) {
			e.getStackTrace();
		}
	}
}
0