結果

問題 No.462 6日知らずのコンピュータ
ユーザー lloyzlloyz
提出日時 2023-10-23 22:14:25
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 708 bytes
コンパイル時間 179 ms
コンパイル使用メモリ 82,308 KB
実行使用メモリ 66,668 KB
最終ジャッジ日時 2024-09-22 15:34:04
合計ジャッジ時間 6,044 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
53,532 KB
testcase_01 AC 39 ms
52,948 KB
testcase_02 AC 47 ms
61,112 KB
testcase_03 AC 46 ms
61,432 KB
testcase_04 AC 38 ms
52,200 KB
testcase_05 AC 37 ms
52,176 KB
testcase_06 AC 38 ms
53,012 KB
testcase_07 AC 38 ms
52,544 KB
testcase_08 RE -
testcase_09 AC 38 ms
53,204 KB
testcase_10 AC 38 ms
52,404 KB
testcase_11 AC 38 ms
53,212 KB
testcase_12 AC 38 ms
53,236 KB
testcase_13 AC 38 ms
54,004 KB
testcase_14 AC 42 ms
59,152 KB
testcase_15 AC 37 ms
53,204 KB
testcase_16 AC 38 ms
53,912 KB
testcase_17 AC 38 ms
52,872 KB
testcase_18 AC 38 ms
52,896 KB
testcase_19 AC 38 ms
52,820 KB
testcase_20 AC 38 ms
52,676 KB
testcase_21 AC 39 ms
52,460 KB
testcase_22 AC 38 ms
53,024 KB
testcase_23 AC 42 ms
60,080 KB
testcase_24 AC 38 ms
52,588 KB
testcase_25 AC 45 ms
60,120 KB
testcase_26 AC 39 ms
52,144 KB
testcase_27 AC 38 ms
53,648 KB
testcase_28 AC 39 ms
53,664 KB
testcase_29 AC 38 ms
53,936 KB
testcase_30 AC 38 ms
52,784 KB
testcase_31 AC 38 ms
52,684 KB
testcase_32 AC 39 ms
52,856 KB
testcase_33 AC 38 ms
53,496 KB
testcase_34 AC 38 ms
52,704 KB
testcase_35 AC 38 ms
53,220 KB
testcase_36 AC 38 ms
52,992 KB
testcase_37 AC 38 ms
53,500 KB
testcase_38 AC 38 ms
53,200 KB
testcase_39 AC 37 ms
53,392 KB
testcase_40 AC 38 ms
53,564 KB
testcase_41 AC 44 ms
59,856 KB
testcase_42 AC 38 ms
52,212 KB
testcase_43 AC 38 ms
52,612 KB
testcase_44 AC 38 ms
52,992 KB
testcase_45 AC 37 ms
52,968 KB
testcase_46 AC 38 ms
53,252 KB
testcase_47 AC 42 ms
59,084 KB
testcase_48 AC 43 ms
58,860 KB
testcase_49 AC 37 ms
52,864 KB
testcase_50 AC 38 ms
52,068 KB
testcase_51 AC 37 ms
53,300 KB
testcase_52 AC 37 ms
53,180 KB
testcase_53 AC 38 ms
52,432 KB
testcase_54 AC 38 ms
52,688 KB
testcase_55 AC 38 ms
53,412 KB
testcase_56 AC 39 ms
51,936 KB
testcase_57 AC 39 ms
52,628 KB
testcase_58 AC 38 ms
52,504 KB
testcase_59 AC 37 ms
53,348 KB
testcase_60 AC 39 ms
53,388 KB
testcase_61 AC 38 ms
52,868 KB
testcase_62 AC 37 ms
52,072 KB
testcase_63 AC 37 ms
53,116 KB
testcase_64 AC 38 ms
52,984 KB
testcase_65 AC 36 ms
52,756 KB
testcase_66 AC 37 ms
52,248 KB
testcase_67 AC 38 ms
52,808 KB
testcase_68 AC 38 ms
52,724 KB
testcase_69 AC 37 ms
52,620 KB
testcase_70 AC 38 ms
53,264 KB
testcase_71 AC 37 ms
52,864 KB
testcase_72 AC 37 ms
53,132 KB
testcase_73 AC 38 ms
53,004 KB
testcase_74 AC 38 ms
52,072 KB
testcase_75 AC 37 ms
52,784 KB
testcase_76 AC 38 ms
52,944 KB
testcase_77 AC 38 ms
52,940 KB
testcase_78 AC 38 ms
52,752 KB
testcase_79 RE -
testcase_80 RE -
testcase_81 RE -
testcase_82 RE -
testcase_83 RE -
testcase_84 AC 38 ms
53,488 KB
testcase_85 AC 38 ms
53,500 KB
testcase_86 RE -
権限があれば一括ダウンロードができます

ソースコード

diff #

n, k = map(int, input().split())
A = list(map(int, input().split()))
A.sort()

mod = 10**9 + 7
Fact = [1]
for i in range(1, n + 1):
    Fact.append(Fact[-1] * i)
ans = 1
L = [0 for _ in range(n)]
for i in range(k):
    NL = [0 for _ in range(n)]
    a = A[i]
    cnt = 0
    for j in range(n):
        NL[j] = a % 2
        a //= 2
        if L[j] == 0 and NL[j] == 1:
            cnt += 1
        elif L[j] == 1 and NL[j] == 0:
            cnt = -1
            break
    if cnt == -1:
        print(0)
        exit()
    ans *= Fact[cnt]
    ans %= mod
    L = NL
NL = [1 for _ in range(n)]
cnt = 0
for i in range(n):
    if L[i] == 0 and NL[i] == 1:
        cnt += 1
ans *= Fact[cnt]
ans %= mod
print(ans)
0