結果

問題 No.292 芸名
ユーザー TwinkleStar74TwinkleStar74
提出日時 2017-10-29 04:10:38
言語 Java21
(openjdk 21)
結果
AC  
実行時間 52 ms / 2,000 ms
コード長 496 bytes
コンパイル時間 3,274 ms
コンパイル使用メモリ 73,608 KB
実行使用メモリ 37,076 KB
最終ジャッジ日時 2024-11-22 04:38:53
合計ジャッジ時間 4,523 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 52 ms
36,576 KB
testcase_01 AC 52 ms
37,044 KB
testcase_02 AC 52 ms
36,928 KB
testcase_03 AC 51 ms
36,884 KB
testcase_04 AC 50 ms
36,876 KB
testcase_05 AC 49 ms
36,704 KB
testcase_06 AC 50 ms
37,032 KB
testcase_07 AC 51 ms
36,580 KB
testcase_08 AC 50 ms
36,956 KB
testcase_09 AC 50 ms
37,076 KB
testcase_10 AC 52 ms
36,864 KB
testcase_11 AC 51 ms
36,668 KB
testcase_12 AC 51 ms
36,976 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

public class No292 {
	public static void main(String[] args) throws IOException{
		String[] str = new BufferedReader(new InputStreamReader(System.in)).readLine().split(" ");
		int t = Integer.parseInt(str[1]);
		int u = Integer.parseInt(str[2]);
		char[] chr = str[0].toCharArray();
		for(int i=0; i < chr.length; i++){
			if(i != t && i != u) System.out.print(chr[i]);
		}
		System.out.println();
	}
}
0