結果

問題 No.292 芸名
ユーザー spaciaspacia
提出日時 2016-01-03 15:43:19
言語 Java21
(openjdk 21)
結果
AC  
実行時間 103 ms / 2,000 ms
コード長 556 bytes
コンパイル時間 2,558 ms
コンパイル使用メモリ 76,184 KB
実行使用メモリ 40,076 KB
最終ジャッジ日時 2024-09-19 10:46:44
合計ジャッジ時間 4,454 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 93 ms
38,348 KB
testcase_01 AC 101 ms
38,364 KB
testcase_02 AC 94 ms
40,076 KB
testcase_03 AC 103 ms
38,368 KB
testcase_04 AC 95 ms
39,932 KB
testcase_05 AC 92 ms
38,144 KB
testcase_06 AC 96 ms
38,416 KB
testcase_07 AC 101 ms
38,524 KB
testcase_08 AC 102 ms
38,144 KB
testcase_09 AC 93 ms
38,456 KB
testcase_10 AC 89 ms
38,284 KB
testcase_11 AC 93 ms
38,248 KB
testcase_12 AC 102 ms
38,352 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.*;
import java.util.*;

class Main {
	
	public static void out (Object o) {
		System.out.println(o);
	}
		
	public static void main (String[] args) throws IOException {
		BufferedReader br = 
			new BufferedReader(new InputStreamReader(System.in));
		
		String[] line = br.readLine().split(" ");
		char[] c = line[0].toCharArray();
		int t = Integer.parseInt(line[1]);
		int u = Integer.parseInt(line[2]);
		
		String ans = "";
		for (int i = 0; i < c.length; i++) {
			if (i == t || i == u) continue;
			ans += c[i];
		}
		
		out(ans);
	}
}
0