結果

問題 No.292 芸名
ユーザー bellbell
提出日時 2021-02-20 21:10:12
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 407 bytes
コンパイル時間 2,234 ms
コンパイル使用メモリ 75,200 KB
実行使用メモリ 54,212 KB
最終ジャッジ日時 2024-09-18 21:31:23
合計ジャッジ時間 4,726 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 135 ms
41,444 KB
testcase_01 AC 131 ms
40,992 KB
testcase_02 WA -
testcase_03 RE -
testcase_04 AC 130 ms
40,932 KB
testcase_05 AC 132 ms
41,356 KB
testcase_06 AC 131 ms
41,048 KB
testcase_07 AC 131 ms
41,256 KB
testcase_08 AC 131 ms
40,888 KB
testcase_09 AC 130 ms
41,036 KB
testcase_10 AC 131 ms
40,988 KB
testcase_11 AC 117 ms
41,368 KB
testcase_12 RE -
権限があれば一括ダウンロードができます

ソースコード

diff #

	import java.util.*;

	public class Main {
		public static void main(String[] args) {
			Scanner sc = new Scanner(System.in);
			String s= sc.next();
			int t = sc.nextInt();
			int u = sc.nextInt();
			sc.close();
			StringBuilder sb = new StringBuilder(s);
			if( t != u){
				sb.delete(t , t+1);
				sb.delete(u-1 , u);
			}else if( t == u){
				sb.delete(t, t+1);
			}

			System.out.println(sb);
		}
	}
0