結果

問題 No.2836 Comment Out
ユーザー fiblonariafiblonaria
提出日時 2024-08-15 04:20:37
言語 Java21
(openjdk 21)
結果
AC  
実行時間 889 ms / 2,000 ms
コード長 614 bytes
コンパイル時間 3,600 ms
コンパイル使用メモリ 74,708 KB
実行使用メモリ 67,640 KB
最終ジャッジ日時 2024-08-15 04:21:13
合計ジャッジ時間 36,422 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 133 ms
54,240 KB
testcase_01 AC 132 ms
54,132 KB
testcase_02 AC 131 ms
53,840 KB
testcase_03 AC 132 ms
53,996 KB
testcase_04 AC 133 ms
54,056 KB
testcase_05 AC 132 ms
54,060 KB
testcase_06 AC 149 ms
54,172 KB
testcase_07 AC 678 ms
63,564 KB
testcase_08 AC 667 ms
63,684 KB
testcase_09 AC 861 ms
66,080 KB
testcase_10 AC 815 ms
66,200 KB
testcase_11 AC 826 ms
66,212 KB
testcase_12 AC 847 ms
66,236 KB
testcase_13 AC 874 ms
66,216 KB
testcase_14 AC 818 ms
67,328 KB
testcase_15 AC 836 ms
66,848 KB
testcase_16 AC 869 ms
66,184 KB
testcase_17 AC 834 ms
66,272 KB
testcase_18 AC 832 ms
67,640 KB
testcase_19 AC 846 ms
66,372 KB
testcase_20 AC 842 ms
66,168 KB
testcase_21 AC 825 ms
66,328 KB
testcase_22 AC 825 ms
66,544 KB
testcase_23 AC 889 ms
66,152 KB
testcase_24 AC 632 ms
59,564 KB
testcase_25 AC 735 ms
63,516 KB
testcase_26 AC 561 ms
59,160 KB
testcase_27 AC 711 ms
61,780 KB
testcase_28 AC 688 ms
61,252 KB
testcase_29 AC 725 ms
60,872 KB
testcase_30 AC 615 ms
59,460 KB
testcase_31 AC 716 ms
61,140 KB
testcase_32 AC 496 ms
59,128 KB
testcase_33 AC 644 ms
59,464 KB
testcase_34 AC 547 ms
59,368 KB
testcase_35 AC 768 ms
63,632 KB
testcase_36 AC 625 ms
59,524 KB
testcase_37 AC 787 ms
63,308 KB
testcase_38 AC 683 ms
59,440 KB
testcase_39 AC 636 ms
59,560 KB
testcase_40 AC 671 ms
59,644 KB
testcase_41 AC 697 ms
61,024 KB
testcase_42 AC 704 ms
61,376 KB
testcase_43 AC 476 ms
59,164 KB
testcase_44 AC 132 ms
54,192 KB
testcase_45 AC 135 ms
53,808 KB
testcase_46 AC 135 ms
54,344 KB
testcase_47 AC 132 ms
54,200 KB
testcase_48 AC 130 ms
53,864 KB
testcase_49 AC 130 ms
54,084 KB
testcase_50 AC 133 ms
53,936 KB
testcase_51 AC 131 ms
54,008 KB
testcase_52 AC 133 ms
54,120 KB
testcase_53 AC 131 ms
54,016 KB
testcase_54 AC 132 ms
54,192 KB
testcase_55 AC 132 ms
53,856 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class CheckZeroOrOne {
    public static void main(String[] args) {
        Scanner scanner = new Scanner(System.in);
        int n = scanner.nextInt();
        int[] A = new int[n];
        boolean containsZeroOrOne = false;
        for (int i = 0; i < n; i++) {
            A[i] = scanner.nextInt();
            if (A[i] == 0 || A[i] == 1) {
                containsZeroOrOne = true;
            }
        }
        if (containsZeroOrOne) {
            System.out.println("Yes");
        } else {
            System.out.println("No");
        }
        scanner.close();
    }
}
0