結果

問題 No.292 芸名
ユーザー YamaKasaYamaKasa
提出日時 2018-05-02 00:15:06
言語 Java21
(openjdk 21)
結果
AC  
実行時間 144 ms / 2,000 ms
コード長 565 bytes
コンパイル時間 2,231 ms
コンパイル使用メモリ 75,244 KB
実行使用メモリ 41,404 KB
最終ジャッジ日時 2024-06-28 00:17:04
合計ジャッジ時間 4,935 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 113 ms
40,188 KB
testcase_01 AC 126 ms
41,060 KB
testcase_02 AC 127 ms
41,104 KB
testcase_03 AC 138 ms
40,996 KB
testcase_04 AC 144 ms
40,976 KB
testcase_05 AC 141 ms
40,996 KB
testcase_06 AC 139 ms
41,100 KB
testcase_07 AC 114 ms
39,872 KB
testcase_08 AC 127 ms
41,292 KB
testcase_09 AC 129 ms
41,304 KB
testcase_10 AC 129 ms
41,116 KB
testcase_11 AC 126 ms
41,380 KB
testcase_12 AC 128 ms
41,404 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {
	public static void main(String[] args) {
		Scanner scan = new Scanner(System.in);
		String S = scan.next();
		int t = scan.nextInt();
		int u = scan.nextInt();
		scan.close();

		StringBuilder sb = new StringBuilder();
		sb.append(S);
		if(t == u) {
			sb.deleteCharAt(t);
			System.out.println(sb.toString());
		}else if(t > u) {
			sb.deleteCharAt(t);
			sb.deleteCharAt(u);
			System.out.println(sb.toString());
		}else {
			sb.deleteCharAt(u);
			sb.deleteCharAt(t);
			System.out.println(sb.toString());
		}
	}
}
0