結果

問題 No.292 芸名
ユーザー shinwisteriashinwisteria
提出日時 2018-02-16 23:24:32
言語 Java21
(openjdk 21)
結果
AC  
実行時間 114 ms / 2,000 ms
コード長 480 bytes
コンパイル時間 3,196 ms
コンパイル使用メモリ 76,360 KB
実行使用メモリ 41,548 KB
最終ジャッジ日時 2024-06-23 06:12:29
合計ジャッジ時間 5,888 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 108 ms
41,064 KB
testcase_01 AC 101 ms
40,264 KB
testcase_02 AC 105 ms
40,092 KB
testcase_03 AC 114 ms
41,548 KB
testcase_04 AC 105 ms
40,260 KB
testcase_05 AC 100 ms
40,284 KB
testcase_06 AC 110 ms
41,180 KB
testcase_07 AC 108 ms
40,884 KB
testcase_08 AC 106 ms
39,960 KB
testcase_09 AC 101 ms
39,992 KB
testcase_10 AC 110 ms
41,164 KB
testcase_11 AC 111 ms
41,344 KB
testcase_12 AC 102 ms
40,136 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package m.shin;
import java.util.Scanner;
public class Con292 {

	public static void main(String[] args) {
		// TODO 自動生成されたメソッド・スタブ
		Scanner s = new Scanner(System.in);
		String str = s.next();
		int t = s.nextInt() , u = s.nextInt();
		s.close();
		int p = Math.max(t, u) , q = Math.min(t, u);

		str = str.substring(0, p) + str.substring(p+1);
		if(p != q){
			str = str.substring(0, q) + str.substring(q+1);
		}
		System.out.println(str);
	}

}
0