結果

問題 No.462 6日知らずのコンピュータ
ユーザー brthyyjpbrthyyjp
提出日時 2021-12-19 14:30:18
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 735 bytes
コンパイル時間 1,827 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 59,904 KB
最終ジャッジ日時 2024-09-15 14:32:59
合計ジャッジ時間 6,524 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,224 KB
testcase_01 AC 40 ms
52,224 KB
testcase_02 AC 48 ms
59,392 KB
testcase_03 AC 47 ms
59,520 KB
testcase_04 AC 41 ms
51,968 KB
testcase_05 AC 41 ms
51,968 KB
testcase_06 WA -
testcase_07 WA -
testcase_08 AC 43 ms
51,712 KB
testcase_09 AC 42 ms
52,224 KB
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 AC 41 ms
52,352 KB
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 AC 41 ms
51,840 KB
testcase_23 AC 47 ms
59,520 KB
testcase_24 AC 40 ms
52,480 KB
testcase_25 AC 46 ms
59,392 KB
testcase_26 AC 45 ms
58,880 KB
testcase_27 WA -
testcase_28 AC 41 ms
51,840 KB
testcase_29 AC 40 ms
51,840 KB
testcase_30 AC 40 ms
51,968 KB
testcase_31 AC 41 ms
51,968 KB
testcase_32 WA -
testcase_33 AC 47 ms
59,136 KB
testcase_34 WA -
testcase_35 AC 40 ms
52,096 KB
testcase_36 AC 42 ms
52,224 KB
testcase_37 WA -
testcase_38 AC 41 ms
52,096 KB
testcase_39 WA -
testcase_40 AC 47 ms
59,008 KB
testcase_41 AC 47 ms
59,520 KB
testcase_42 WA -
testcase_43 WA -
testcase_44 AC 45 ms
58,752 KB
testcase_45 AC 40 ms
51,840 KB
testcase_46 AC 45 ms
58,752 KB
testcase_47 AC 48 ms
59,392 KB
testcase_48 WA -
testcase_49 AC 40 ms
51,968 KB
testcase_50 AC 40 ms
52,480 KB
testcase_51 AC 41 ms
52,224 KB
testcase_52 AC 41 ms
52,096 KB
testcase_53 AC 41 ms
51,840 KB
testcase_54 AC 40 ms
52,096 KB
testcase_55 AC 42 ms
52,224 KB
testcase_56 AC 40 ms
51,968 KB
testcase_57 AC 41 ms
52,096 KB
testcase_58 AC 40 ms
52,096 KB
testcase_59 AC 40 ms
52,096 KB
testcase_60 AC 40 ms
52,224 KB
testcase_61 AC 40 ms
52,352 KB
testcase_62 WA -
testcase_63 AC 40 ms
51,840 KB
testcase_64 AC 41 ms
52,224 KB
testcase_65 AC 41 ms
52,480 KB
testcase_66 AC 41 ms
52,224 KB
testcase_67 AC 41 ms
52,096 KB
testcase_68 AC 41 ms
51,968 KB
testcase_69 AC 41 ms
51,840 KB
testcase_70 AC 41 ms
52,224 KB
testcase_71 AC 41 ms
51,840 KB
testcase_72 AC 41 ms
51,968 KB
testcase_73 AC 40 ms
51,968 KB
testcase_74 AC 41 ms
51,584 KB
testcase_75 AC 40 ms
51,968 KB
testcase_76 AC 40 ms
51,840 KB
testcase_77 AC 41 ms
51,840 KB
testcase_78 AC 41 ms
52,096 KB
testcase_79 AC 41 ms
52,096 KB
testcase_80 AC 40 ms
51,968 KB
testcase_81 AC 40 ms
51,712 KB
testcase_82 AC 41 ms
51,584 KB
testcase_83 AC 40 ms
52,352 KB
testcase_84 AC 41 ms
51,840 KB
testcase_85 AC 41 ms
51,840 KB
testcase_86 AC 42 ms
51,712 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n, k = map(int, input().split())
N = 1000
mod = 10**9+7
fac = [1]*(N+1)
finv = [1]*(N+1)
for i in range(N):
    fac[i+1] = fac[i] * (i+1) % mod

if k == 0:
    ans = 1
    print(fac[n]%mod)
    exit()

A = list(map(int, input().split()))
A.sort()
if k == n+1:
    if A[0] != 0:
        print(0)
        exit()
    if A[-1] != pow(2, n)-1:
        print(0)
        exit()

ans = 1
b = 0
for a in A:
    cnt = 0
    for i in range(65):
        if (a>>i)&1:
            if (b>>i)&1:
                continue
            else:
                cnt += 1
        else:
            if (b>>i)&1:
                print(0)
                exit()
            else:
                continue
    ans *= fac[cnt]
    ans %= mod
    b |= a
print(ans)
0