結果

問題 No.292 芸名
ユーザー tubo28tubo28
提出日時 2015-11-13 21:32:39
言語 Java21
(openjdk 21)
結果
AC  
実行時間 138 ms / 2,000 ms
コード長 586 bytes
コンパイル時間 2,504 ms
コンパイル使用メモリ 75,244 KB
実行使用メモリ 54,360 KB
最終ジャッジ日時 2024-09-13 14:35:20
合計ジャッジ時間 4,973 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 135 ms
53,744 KB
testcase_01 AC 134 ms
54,360 KB
testcase_02 AC 131 ms
54,204 KB
testcase_03 AC 132 ms
54,220 KB
testcase_04 AC 135 ms
54,300 KB
testcase_05 AC 133 ms
54,160 KB
testcase_06 AC 134 ms
53,924 KB
testcase_07 AC 121 ms
52,764 KB
testcase_08 AC 133 ms
54,148 KB
testcase_09 AC 137 ms
54,020 KB
testcase_10 AC 138 ms
54,312 KB
testcase_11 AC 133 ms
54,248 KB
testcase_12 AC 132 ms
54,032 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package yk725;

import java.util.*;
import java.lang.*;

public class Main {
	public static void main(String [] args){
		cin = new Scanner(System.in);
		(new Main()).run();
	}
	static Scanner cin;
	void run() {
		char[] S = cin.next().toCharArray();
		ArrayList<Character> arr = new ArrayList<>();
		for(char c : S){
			arr.add(c);
		}
		arr.set(cin.nextInt(), ' ');
		arr.set(cin.nextInt(), ' ');
		try { arr.remove((Character)' '); } catch(Exception e){}
		try { arr.remove((Character)' '); } catch(Exception e){}
		for(char c : arr) System.out.print(c);
		System.out.println();
	}
}
0