結果

問題 No.292 芸名
ユーザー samplelpmassamplelpmas
提出日時 2016-12-19 09:47:34
言語 Java21
(openjdk 21)
結果
AC  
実行時間 147 ms / 2,000 ms
コード長 455 bytes
コンパイル時間 2,468 ms
コンパイル使用メモリ 74,668 KB
実行使用メモリ 41,576 KB
最終ジャッジ日時 2024-05-08 06:53:39
合計ジャッジ時間 5,295 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 142 ms
41,496 KB
testcase_01 AC 141 ms
41,344 KB
testcase_02 AC 147 ms
41,492 KB
testcase_03 AC 139 ms
41,116 KB
testcase_04 AC 139 ms
41,084 KB
testcase_05 AC 140 ms
41,376 KB
testcase_06 AC 139 ms
41,384 KB
testcase_07 AC 137 ms
41,484 KB
testcase_08 AC 141 ms
41,276 KB
testcase_09 AC 147 ms
41,352 KB
testcase_10 AC 144 ms
41,436 KB
testcase_11 AC 140 ms
41,576 KB
testcase_12 AC 143 ms
41,504 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