結果

問題 No.292 芸名
ユーザー yagi2yagi2
提出日時 2017-04-20 15:35:02
言語 Java21
(openjdk 21)
結果
AC  
実行時間 130 ms / 2,000 ms
コード長 493 bytes
コンパイル時間 2,251 ms
コンパイル使用メモリ 75,104 KB
実行使用メモリ 41,344 KB
最終ジャッジ日時 2024-07-19 20:57:44
合計ジャッジ時間 4,704 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 113 ms
40,200 KB
testcase_01 AC 125 ms
41,296 KB
testcase_02 AC 125 ms
41,284 KB
testcase_03 AC 129 ms
41,100 KB
testcase_04 AC 129 ms
41,244 KB
testcase_05 AC 112 ms
40,012 KB
testcase_06 AC 124 ms
41,344 KB
testcase_07 AC 126 ms
41,172 KB
testcase_08 AC 124 ms
41,064 KB
testcase_09 AC 128 ms
40,884 KB
testcase_10 AC 130 ms
41,140 KB
testcase_11 AC 123 ms
41,092 KB
testcase_12 AC 110 ms
40,132 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);

        String S = sc.next();
        int i = Integer.parseInt(sc.next());
        int u = Integer.parseInt(sc.next());

        StringBuilder R = new StringBuilder();
        for (int j = 0; j < S.length(); j++) {
            if (j != i && j != u) {
                R.append(S.charAt(j));
            }
        }

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