結果

問題 No.462 6日知らずのコンピュータ
ユーザー tentententen
提出日時 2021-11-02 10:44:12
言語 Java21
(openjdk 21)
結果
AC  
実行時間 61 ms / 2,000 ms
コード長 1,818 bytes
コンパイル時間 2,280 ms
コンパイル使用メモリ 77,656 KB
実行使用メモリ 37,288 KB
最終ジャッジ日時 2024-10-11 08:59:09
合計ジャッジ時間 9,362 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 55 ms
37,180 KB
testcase_01 AC 54 ms
37,232 KB
testcase_02 AC 55 ms
36,996 KB
testcase_03 AC 56 ms
36,744 KB
testcase_04 AC 54 ms
37,000 KB
testcase_05 AC 54 ms
36,908 KB
testcase_06 AC 54 ms
36,976 KB
testcase_07 AC 54 ms
36,780 KB
testcase_08 AC 54 ms
37,016 KB
testcase_09 AC 55 ms
36,780 KB
testcase_10 AC 55 ms
36,964 KB
testcase_11 AC 56 ms
37,164 KB
testcase_12 AC 54 ms
37,208 KB
testcase_13 AC 54 ms
36,972 KB
testcase_14 AC 54 ms
36,964 KB
testcase_15 AC 54 ms
37,132 KB
testcase_16 AC 54 ms
37,016 KB
testcase_17 AC 55 ms
37,016 KB
testcase_18 AC 54 ms
36,792 KB
testcase_19 AC 55 ms
37,148 KB
testcase_20 AC 54 ms
37,104 KB
testcase_21 AC 55 ms
37,288 KB
testcase_22 AC 54 ms
37,224 KB
testcase_23 AC 55 ms
37,152 KB
testcase_24 AC 54 ms
36,668 KB
testcase_25 AC 55 ms
36,656 KB
testcase_26 AC 56 ms
37,216 KB
testcase_27 AC 53 ms
37,216 KB
testcase_28 AC 55 ms
37,168 KB
testcase_29 AC 55 ms
37,016 KB
testcase_30 AC 55 ms
36,780 KB
testcase_31 AC 55 ms
36,668 KB
testcase_32 AC 54 ms
36,964 KB
testcase_33 AC 54 ms
36,964 KB
testcase_34 AC 53 ms
37,224 KB
testcase_35 AC 54 ms
37,104 KB
testcase_36 AC 56 ms
37,152 KB
testcase_37 AC 55 ms
37,144 KB
testcase_38 AC 54 ms
36,760 KB
testcase_39 AC 56 ms
37,084 KB
testcase_40 AC 56 ms
36,764 KB
testcase_41 AC 55 ms
37,224 KB
testcase_42 AC 56 ms
37,088 KB
testcase_43 AC 55 ms
36,984 KB
testcase_44 AC 55 ms
36,776 KB
testcase_45 AC 55 ms
37,168 KB
testcase_46 AC 61 ms
37,180 KB
testcase_47 AC 56 ms
36,780 KB
testcase_48 AC 55 ms
37,000 KB
testcase_49 AC 55 ms
36,964 KB
testcase_50 AC 55 ms
36,964 KB
testcase_51 AC 54 ms
36,716 KB
testcase_52 AC 55 ms
37,124 KB
testcase_53 AC 53 ms
37,088 KB
testcase_54 AC 56 ms
36,788 KB
testcase_55 AC 56 ms
37,256 KB
testcase_56 AC 57 ms
36,964 KB
testcase_57 AC 55 ms
37,200 KB
testcase_58 AC 54 ms
36,660 KB
testcase_59 AC 57 ms
36,964 KB
testcase_60 AC 55 ms
37,252 KB
testcase_61 AC 55 ms
37,160 KB
testcase_62 AC 56 ms
37,256 KB
testcase_63 AC 57 ms
37,288 KB
testcase_64 AC 55 ms
37,288 KB
testcase_65 AC 54 ms
37,240 KB
testcase_66 AC 56 ms
37,224 KB
testcase_67 AC 55 ms
37,048 KB
testcase_68 AC 56 ms
36,788 KB
testcase_69 AC 55 ms
36,940 KB
testcase_70 AC 53 ms
37,088 KB
testcase_71 AC 55 ms
36,976 KB
testcase_72 AC 54 ms
37,104 KB
testcase_73 AC 56 ms
36,816 KB
testcase_74 AC 54 ms
37,104 KB
testcase_75 AC 55 ms
37,000 KB
testcase_76 AC 54 ms
37,240 KB
testcase_77 AC 54 ms
36,968 KB
testcase_78 AC 56 ms
36,964 KB
testcase_79 AC 53 ms
36,964 KB
testcase_80 AC 54 ms
37,104 KB
testcase_81 AC 54 ms
36,668 KB
testcase_82 AC 53 ms
36,648 KB
testcase_83 AC 54 ms
37,160 KB
testcase_84 AC 54 ms
37,232 KB
testcase_85 AC 53 ms
36,628 KB
testcase_86 AC 53 ms
37,064 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

public class Main {
    static final int MOD = 1000000007;
    public static void main(String[] args) throws Exception {
        Scanner sc = new Scanner();
        int n = sc.nextInt();
        int k = sc.nextInt();
        long ans = 1;
        long[] values = new long[k + 2];
        for (int i = 1; i <= k; i++) {
            values[i] = sc.nextLong();
        }
        values[k + 1] = (1L << n) - 1;
        Arrays.sort(values);
        for (int i = 1; i <= k + 1; i++) {
            if ((values[i - 1] | values[i]) == values[i]) {
                ans *= kaijo(pop(values[i]) - pop(values[i - 1]));
                ans %= MOD;
            } else {
                ans = 0;
            }
        }
        System.out.println(ans);
    }
    
    static long kaijo(int x) {
        if (x == 0) {
            return 1;
        } else {
            return x * kaijo(x - 1) % MOD;
        }
    }
    
    static int pop(long x) {
        int count = 0;
        while (x > 0) {
            if (x % 2 == 1) {
                count++;
            }
            x /= 2;
        }
        return count;
    }
}
class Scanner {
    BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
    StringTokenizer st = new StringTokenizer("");
    
    public Scanner() throws Exception {
        
    }
    
    public int nextInt() throws Exception {
        return Integer.parseInt(next());
    }
    
    public long nextLong() throws Exception {
        return Long.parseLong(next());
    }
    
    public String nextLine() throws Exception {
        return br.readLine();
    }
    
    public String next() throws Exception {
        if (!st.hasMoreTokens()) {
            st = new StringTokenizer(br.readLine());
        }
        return st.nextToken();
    }
}
0