結果

問題 No.292 芸名
ユーザー jimanojimano
提出日時 2018-01-20 13:16:21
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 629 bytes
コンパイル時間 3,508 ms
コンパイル使用メモリ 74,496 KB
実行使用メモリ 50,492 KB
最終ジャッジ日時 2024-06-07 04:05:49
合計ジャッジ時間 4,973 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 54 ms
36,872 KB
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 AC 55 ms
36,944 KB
testcase_08 AC 54 ms
37,012 KB
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

package me.yukicoder.lv1;

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

public class No0292 {
	public static void main(String[] args) {
		try (BufferedReader br = new BufferedReader(new InputStreamReader(System.in));) {
			String[] str = br.readLine().split(" ");
			int t = Integer.parseInt(str[1]);
			int u = Integer.parseInt(str[2]);
			char[] array = str[0].toCharArray();

			for (int i = 0; i < array.length; i++) {
				if (i != t || i != u) {
					System.out.print(array[i]);
				}
			}
			System.out.println();
		} catch (IOException e) {
			e.printStackTrace();
		}
	}
}
0