結果

問題 No.292 芸名
ユーザー kou6839kou6839
提出日時 2015-10-24 01:12:07
言語 Java21
(openjdk 21)
結果
AC  
実行時間 135 ms / 2,000 ms
コード長 443 bytes
コンパイル時間 2,130 ms
コンパイル使用メモリ 74,400 KB
実行使用メモリ 56,196 KB
最終ジャッジ日時 2024-09-13 04:34:00
合計ジャッジ時間 4,635 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 135 ms
53,920 KB
testcase_01 AC 132 ms
54,328 KB
testcase_02 AC 131 ms
53,964 KB
testcase_03 AC 133 ms
54,064 KB
testcase_04 AC 131 ms
53,924 KB
testcase_05 AC 132 ms
54,200 KB
testcase_06 AC 134 ms
53,944 KB
testcase_07 AC 133 ms
53,968 KB
testcase_08 AC 130 ms
56,196 KB
testcase_09 AC 131 ms
54,256 KB
testcase_10 AC 131 ms
53,936 KB
testcase_11 AC 132 ms
53,812 KB
testcase_12 AC 129 ms
53,808 KB
権限があれば一括ダウンロードができます

ソースコード

diff #


import java.util.*;
public class Main {
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		
		StringBuilder in = new StringBuilder(sc.next());
		int n = sc.nextInt();
		int m = sc.nextInt();
		if(n==m){
			in.replace(n, n+1, "");
		}
		
		if(n<m){
			in.replace(n, n+1, "");
			in.replace(m-1, m, "");
		}
		if(n>m){
			in.replace(n, n+1, "");
			in.replace(m, m+1, "");
		}
		
		System.out.println(in);
	}
}
0