結果

問題 No.462 6日知らずのコンピュータ
ユーザー rlangevinrlangevin
提出日時 2023-03-02 08:58:46
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 499 bytes
コンパイル時間 203 ms
コンパイル使用メモリ 82,264 KB
実行使用メモリ 67,388 KB
最終ジャッジ日時 2024-09-17 05:48:45
合計ジャッジ時間 5,628 ms
ジャッジサーバーID
(参考情報)
judge1 / judge6
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
53,136 KB
testcase_01 AC 38 ms
53,636 KB
testcase_02 AC 40 ms
57,460 KB
testcase_03 AC 39 ms
58,040 KB
testcase_04 AC 36 ms
52,392 KB
testcase_05 AC 36 ms
53,816 KB
testcase_06 AC 37 ms
52,796 KB
testcase_07 AC 36 ms
52,612 KB
testcase_08 RE -
testcase_09 AC 36 ms
52,568 KB
testcase_10 AC 37 ms
53,432 KB
testcase_11 AC 37 ms
52,372 KB
testcase_12 AC 38 ms
53,152 KB
testcase_13 AC 37 ms
52,240 KB
testcase_14 AC 37 ms
53,148 KB
testcase_15 AC 36 ms
52,688 KB
testcase_16 AC 37 ms
53,420 KB
testcase_17 AC 36 ms
53,056 KB
testcase_18 AC 37 ms
51,876 KB
testcase_19 AC 36 ms
54,300 KB
testcase_20 AC 37 ms
53,260 KB
testcase_21 AC 36 ms
53,292 KB
testcase_22 AC 36 ms
53,228 KB
testcase_23 AC 37 ms
52,068 KB
testcase_24 AC 36 ms
52,312 KB
testcase_25 AC 38 ms
57,276 KB
testcase_26 AC 37 ms
52,336 KB
testcase_27 AC 36 ms
52,948 KB
testcase_28 AC 36 ms
52,396 KB
testcase_29 AC 36 ms
52,348 KB
testcase_30 AC 37 ms
53,376 KB
testcase_31 AC 37 ms
53,216 KB
testcase_32 AC 36 ms
52,808 KB
testcase_33 AC 37 ms
52,748 KB
testcase_34 AC 36 ms
52,980 KB
testcase_35 AC 37 ms
52,336 KB
testcase_36 AC 37 ms
52,280 KB
testcase_37 AC 37 ms
53,424 KB
testcase_38 AC 37 ms
52,724 KB
testcase_39 AC 36 ms
53,664 KB
testcase_40 AC 37 ms
53,356 KB
testcase_41 AC 37 ms
52,408 KB
testcase_42 AC 37 ms
52,316 KB
testcase_43 AC 37 ms
53,600 KB
testcase_44 AC 37 ms
52,460 KB
testcase_45 AC 37 ms
51,936 KB
testcase_46 AC 37 ms
53,404 KB
testcase_47 AC 37 ms
52,212 KB
testcase_48 AC 37 ms
52,820 KB
testcase_49 AC 37 ms
53,576 KB
testcase_50 AC 37 ms
52,956 KB
testcase_51 AC 37 ms
52,708 KB
testcase_52 AC 37 ms
51,944 KB
testcase_53 AC 37 ms
54,156 KB
testcase_54 AC 36 ms
52,744 KB
testcase_55 AC 37 ms
53,080 KB
testcase_56 AC 37 ms
52,860 KB
testcase_57 AC 37 ms
52,236 KB
testcase_58 AC 36 ms
52,892 KB
testcase_59 AC 37 ms
53,052 KB
testcase_60 AC 37 ms
53,276 KB
testcase_61 AC 37 ms
52,516 KB
testcase_62 AC 37 ms
52,468 KB
testcase_63 AC 37 ms
52,240 KB
testcase_64 AC 37 ms
51,876 KB
testcase_65 AC 36 ms
52,736 KB
testcase_66 AC 37 ms
52,428 KB
testcase_67 AC 37 ms
53,144 KB
testcase_68 AC 37 ms
52,360 KB
testcase_69 AC 38 ms
53,696 KB
testcase_70 AC 36 ms
52,820 KB
testcase_71 AC 38 ms
52,432 KB
testcase_72 AC 37 ms
53,712 KB
testcase_73 AC 37 ms
53,112 KB
testcase_74 AC 37 ms
52,492 KB
testcase_75 AC 36 ms
52,624 KB
testcase_76 AC 37 ms
52,360 KB
testcase_77 AC 37 ms
52,876 KB
testcase_78 AC 38 ms
53,264 KB
testcase_79 RE -
testcase_80 RE -
testcase_81 RE -
testcase_82 RE -
testcase_83 RE -
testcase_84 AC 36 ms
52,744 KB
testcase_85 AC 37 ms
52,284 KB
testcase_86 RE -
権限があれば一括ダウンロードができます

ソースコード

diff #

def popcount(n):
    cnt = 0
    while n:
        cnt += n & 1
        n >>= 1
    return cnt

N, K = map(int, input().split())
if K:
    A = list(map(int, input().split()))
mod = 10 ** 9 + 7
A.append((1 << N) - 1)
A.append(0)
A.sort()

M = 65
fact = [1] * M
for i in range(1, M):
    fact[i] = fact[i - 1] * i
    fact[i] %= mod

ans = 1
for i in range(K + 1):
    if A[i] | A[i + 1] != A[i + 1]:
        print(0)
        exit()
    ans *= fact[popcount(A[i] ^ A[i + 1])]
    ans %= mod

print(ans)
0