結果

問題 No.292 芸名
ユーザー marumaru
提出日時 2016-03-23 16:34:45
言語 Java21
(openjdk 21)
結果
AC  
実行時間 132 ms / 2,000 ms
コード長 468 bytes
コンパイル時間 3,384 ms
コンパイル使用メモリ 74,792 KB
実行使用メモリ 54,432 KB
最終ジャッジ日時 2024-10-01 21:32:06
合計ジャッジ時間 5,758 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 129 ms
54,268 KB
testcase_01 AC 127 ms
54,084 KB
testcase_02 AC 128 ms
54,432 KB
testcase_03 AC 120 ms
53,088 KB
testcase_04 AC 129 ms
54,108 KB
testcase_05 AC 129 ms
53,884 KB
testcase_06 AC 132 ms
53,948 KB
testcase_07 AC 127 ms
54,092 KB
testcase_08 AC 126 ms
54,344 KB
testcase_09 AC 128 ms
54,160 KB
testcase_10 AC 132 ms
54,248 KB
testcase_11 AC 130 ms
53,968 KB
testcase_12 AC 128 ms
54,088 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class yukicoder_292 {
	public static void main(String[] args) {
		Scanner stdIn = new Scanner(System.in);
		
		String s = stdIn.next();
		int t = stdIn.nextInt();
		int u = stdIn.nextInt();
		
		char[] str = new char[s.length()];
		
		for (int i = 0; i < s.length(); i++) {
			str[i] = s.charAt(i);
		}
		
		for (int i = 0; i < str.length; i++) {
			if ((i == t) || (i == u)) {
				continue;
			}
			System.out.print(str[i]);
		}
	}
}
0