結果

問題 No.462 6日知らずのコンピュータ
ユーザー htensaihtensai
提出日時 2019-12-12 20:19:50
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 966 bytes
コンパイル時間 2,884 ms
コンパイル使用メモリ 78,400 KB
実行使用メモリ 56,028 KB
最終ジャッジ日時 2024-06-25 14:26:07
合計ジャッジ時間 16,795 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 133 ms
41,564 KB
testcase_01 AC 132 ms
41,268 KB
testcase_02 AC 144 ms
42,064 KB
testcase_03 AC 147 ms
40,244 KB
testcase_04 AC 130 ms
41,208 KB
testcase_05 AC 132 ms
41,436 KB
testcase_06 WA -
testcase_07 WA -
testcase_08 AC 132 ms
41,404 KB
testcase_09 AC 137 ms
41,756 KB
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 AC 140 ms
41,544 KB
testcase_24 WA -
testcase_25 AC 132 ms
40,508 KB
testcase_26 WA -
testcase_27 WA -
testcase_28 AC 133 ms
41,528 KB
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
testcase_32 WA -
testcase_33 AC 137 ms
41,596 KB
testcase_34 WA -
testcase_35 WA -
testcase_36 WA -
testcase_37 WA -
testcase_38 WA -
testcase_39 WA -
testcase_40 WA -
testcase_41 AC 139 ms
41,536 KB
testcase_42 WA -
testcase_43 WA -
testcase_44 WA -
testcase_45 AC 131 ms
41,508 KB
testcase_46 WA -
testcase_47 AC 138 ms
41,472 KB
testcase_48 WA -
testcase_49 AC 132 ms
41,512 KB
testcase_50 AC 133 ms
41,624 KB
testcase_51 AC 128 ms
41,532 KB
testcase_52 AC 142 ms
41,468 KB
testcase_53 AC 135 ms
41,508 KB
testcase_54 AC 130 ms
41,580 KB
testcase_55 AC 131 ms
41,396 KB
testcase_56 AC 135 ms
41,364 KB
testcase_57 AC 139 ms
41,552 KB
testcase_58 AC 137 ms
41,408 KB
testcase_59 AC 140 ms
41,444 KB
testcase_60 AC 138 ms
41,540 KB
testcase_61 AC 120 ms
40,352 KB
testcase_62 WA -
testcase_63 AC 140 ms
41,280 KB
testcase_64 AC 118 ms
40,188 KB
testcase_65 AC 136 ms
41,548 KB
testcase_66 AC 137 ms
41,628 KB
testcase_67 AC 125 ms
40,316 KB
testcase_68 AC 138 ms
41,748 KB
testcase_69 AC 126 ms
40,308 KB
testcase_70 AC 137 ms
41,620 KB
testcase_71 AC 140 ms
41,916 KB
testcase_72 AC 136 ms
41,508 KB
testcase_73 AC 136 ms
41,668 KB
testcase_74 AC 133 ms
41,776 KB
testcase_75 AC 138 ms
41,340 KB
testcase_76 AC 137 ms
41,500 KB
testcase_77 AC 137 ms
41,396 KB
testcase_78 AC 141 ms
41,768 KB
testcase_79 AC 137 ms
41,668 KB
testcase_80 AC 131 ms
41,464 KB
testcase_81 AC 129 ms
41,204 KB
testcase_82 AC 134 ms
41,588 KB
testcase_83 AC 137 ms
41,408 KB
testcase_84 AC 134 ms
41,160 KB
testcase_85 AC 130 ms
41,340 KB
testcase_86 AC 128 ms
41,008 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
import java.io.*;

public class Main {
    public static void main(String[] args) throws Exception {
        Scanner sc = new Scanner(System.in);
        int n = sc.nextInt();
        int k = sc.nextInt();
        long[] arr = new long[k];
        for (int i = 0; i < k; i++) {
            arr[i] = sc.nextLong();
        }
        Arrays.sort(arr);
        for (int i = 0; i < k - 1; i++) {
            if ((arr[i] & arr[i + 1]) != arr[i]) {
                System.out.println(0);
                return;
            }
        }
        if (k > 0 && arr[k - 1] == (long)(Math.pow(2, n)) - 1) {
            k--;
        }
        if (k > 0 && arr[0] == 0) {
            k--;
        }
        System.out.println(kaijo(n - k));
    }
    
    static long kaijo(long x) {
        long ret = 1;
        int mod = 1000000007;
        for (long i = 1; i <= x; i++) {
            ret *= i;
            ret %= mod;
        }
        return ret;
    }
}
0