結果

問題 No.292 芸名
ユーザー samplelpmassamplelpmas
提出日時 2016-12-19 09:47:34
言語 Java21
(openjdk 21)
結果
AC  
実行時間 142 ms / 2,000 ms
コード長 455 bytes
コンパイル時間 2,408 ms
コンパイル使用メモリ 74,136 KB
実行使用メモリ 54,284 KB
最終ジャッジ日時 2024-12-14 08:50:05
合計ジャッジ時間 4,812 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 141 ms
54,188 KB
testcase_01 AC 139 ms
54,020 KB
testcase_02 AC 139 ms
54,100 KB
testcase_03 AC 138 ms
53,908 KB
testcase_04 AC 136 ms
54,284 KB
testcase_05 AC 135 ms
53,968 KB
testcase_06 AC 141 ms
53,080 KB
testcase_07 AC 133 ms
54,016 KB
testcase_08 AC 131 ms
53,964 KB
testcase_09 AC 139 ms
54,156 KB
testcase_10 AC 142 ms
54,008 KB
testcase_11 AC 125 ms
52,972 KB
testcase_12 AC 136 ms
54,148 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {

    public static void main(String[] args) {

        Scanner sc = new Scanner(System.in);

        char[] stageName = sc.next().toCharArray();

        int masterA = sc.nextInt();
        int masterB = sc.nextInt();

        for (int i = 0; i < stageName.length; i++) {

            if ((i != masterA) && (i != masterB)) {
                System.out.print(stageName[i]);
            }

        }

    }

}
0