結果

問題 No.292 芸名
ユーザー dazydazy
提出日時 2017-03-16 05:00:17
言語 Java
(openjdk 23)
結果
AC  
実行時間 125 ms / 2,000 ms
コード長 502 bytes
コンパイル時間 3,959 ms
コンパイル使用メモリ 77,776 KB
実行使用メモリ 41,560 KB
最終ジャッジ日時 2024-07-04 01:44:18
合計ジャッジ時間 5,373 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 108 ms
40,160 KB
testcase_01 AC 107 ms
39,756 KB
testcase_02 AC 121 ms
41,364 KB
testcase_03 AC 122 ms
41,524 KB
testcase_04 AC 123 ms
41,248 KB
testcase_05 AC 122 ms
41,256 KB
testcase_06 AC 121 ms
41,532 KB
testcase_07 AC 122 ms
41,524 KB
testcase_08 AC 117 ms
40,920 KB
testcase_09 AC 125 ms
41,004 KB
testcase_10 AC 124 ms
41,560 KB
testcase_11 AC 108 ms
39,936 KB
testcase_12 AC 103 ms
40,156 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Run {
    public static void main (String arg[]) {
        Scanner scan = new Scanner(System.in);
        String ans;
        String[] S = scan.next().split("");
        int t = scan.nextInt();
        int u = scan.nextInt();

        if (t!=u) {
            S[Math.max(t, u)] = "";
            S[Math.min(t, u)] = "";
        } else {
            S[t] = "";
        }
        for (int i = 0; i < S.length; i++) {
            System.out.printf(S[i]);
        }
    }
}
0