結果

問題 No.292 芸名
ユーザー fal_rndfal_rnd
提出日時 2017-07-18 23:44:52
言語 Java21
(openjdk 21)
結果
AC  
実行時間 144 ms / 2,000 ms
コード長 370 bytes
コンパイル時間 3,553 ms
コンパイル使用メモリ 76,592 KB
実行使用メモリ 41,536 KB
最終ジャッジ日時 2024-10-08 11:06:54
合計ジャッジ時間 5,518 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 137 ms
41,196 KB
testcase_01 AC 137 ms
41,400 KB
testcase_02 AC 136 ms
41,068 KB
testcase_03 AC 136 ms
41,536 KB
testcase_04 AC 140 ms
41,272 KB
testcase_05 AC 138 ms
41,332 KB
testcase_06 AC 137 ms
41,344 KB
testcase_07 AC 136 ms
41,076 KB
testcase_08 AC 138 ms
41,352 KB
testcase_09 AC 137 ms
41,068 KB
testcase_10 AC 137 ms
41,344 KB
testcase_11 AC 144 ms
41,072 KB
testcase_12 AC 137 ms
41,460 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

class C{
	public static void main(String[]$){
		Scanner s=new Scanner(System.in);
		String v=s.next();
		int t=s.nextInt(),u=s.nextInt();
		v=v.substring(0,t)+v.substring(t+1,v.length());
		
		if(u<t)
			v=v.substring(0,u)+v.substring(u+1,v.length());
		if(u>t)
			v=v.substring(0,u-1)+v.substring(u,v.length());
		System.out.println(v);
	}
}
0