結果

問題 No.292 芸名
ユーザー マサマサ
提出日時 2022-02-09 17:27:01
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 380 bytes
コンパイル時間 2,773 ms
コンパイル使用メモリ 74,464 KB
実行使用メモリ 41,652 KB
最終ジャッジ日時 2024-06-24 21:36:41
合計ジャッジ時間 5,365 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 113 ms
39,936 KB
testcase_01 AC 130 ms
41,612 KB
testcase_02 WA -
testcase_03 RE -
testcase_04 AC 129 ms
41,148 KB
testcase_05 AC 129 ms
41,652 KB
testcase_06 AC 129 ms
41,196 KB
testcase_07 AC 131 ms
41,444 KB
testcase_08 AC 127 ms
41,152 KB
testcase_09 AC 131 ms
41,452 KB
testcase_10 AC 131 ms
41,200 KB
testcase_11 AC 116 ms
40,140 KB
testcase_12 RE -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

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