結果

問題 No.292 芸名
ユーザー ぴろずぴろず
提出日時 2015-10-23 22:21:52
言語 Java21
(openjdk 21)
結果
AC  
実行時間 131 ms / 2,000 ms
コード長 405 bytes
コンパイル時間 2,456 ms
コンパイル使用メモリ 75,184 KB
実行使用メモリ 54,124 KB
最終ジャッジ日時 2024-07-22 11:46:01
合計ジャッジ時間 5,387 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 128 ms
54,092 KB
testcase_01 AC 128 ms
53,992 KB
testcase_02 AC 130 ms
54,124 KB
testcase_03 AC 129 ms
53,740 KB
testcase_04 AC 129 ms
53,848 KB
testcase_05 AC 123 ms
54,048 KB
testcase_06 AC 128 ms
54,040 KB
testcase_07 AC 131 ms
54,092 KB
testcase_08 AC 124 ms
54,072 KB
testcase_09 AC 127 ms
53,972 KB
testcase_10 AC 124 ms
53,988 KB
testcase_11 AC 130 ms
54,044 KB
testcase_12 AC 125 ms
53,900 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package no292;

import java.util.Scanner;

public class Main {

	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		char[] s = sc.next().toCharArray();
		int t = sc.nextInt();
		int u = sc.nextInt();
		StringBuilder sb = new StringBuilder();
		for(int i=0;i<s.length;i++) {
			if (i != t && i != u) {
				sb.append(s[i]);
			}
		}
		System.out.println(sb.toString());
	}

}
0