結果

問題 No.462 6日知らずのコンピュータ
ユーザー mkawa2mkawa2
提出日時 2020-01-02 00:09:20
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 1,206 bytes
コンパイル時間 135 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 44,308 KB
最終ジャッジ日時 2024-11-22 17:29:33
合計ジャッジ時間 47,881 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 514 ms
44,164 KB
testcase_01 AC 514 ms
44,036 KB
testcase_02 AC 518 ms
44,164 KB
testcase_03 AC 517 ms
44,160 KB
testcase_04 AC 523 ms
44,292 KB
testcase_05 AC 517 ms
44,036 KB
testcase_06 WA -
testcase_07 WA -
testcase_08 AC 512 ms
44,164 KB
testcase_09 AC 513 ms
44,160 KB
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 AC 518 ms
44,160 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 519 ms
44,164 KB
testcase_23 AC 510 ms
44,036 KB
testcase_24 AC 513 ms
44,032 KB
testcase_25 AC 517 ms
44,164 KB
testcase_26 AC 516 ms
44,164 KB
testcase_27 WA -
testcase_28 AC 513 ms
44,164 KB
testcase_29 AC 516 ms
44,168 KB
testcase_30 AC 512 ms
44,032 KB
testcase_31 AC 511 ms
44,032 KB
testcase_32 WA -
testcase_33 AC 503 ms
44,164 KB
testcase_34 WA -
testcase_35 AC 494 ms
44,156 KB
testcase_36 AC 512 ms
44,164 KB
testcase_37 WA -
testcase_38 AC 506 ms
44,164 KB
testcase_39 WA -
testcase_40 AC 516 ms
44,156 KB
testcase_41 AC 512 ms
44,032 KB
testcase_42 WA -
testcase_43 WA -
testcase_44 AC 508 ms
44,288 KB
testcase_45 AC 503 ms
44,164 KB
testcase_46 AC 503 ms
44,032 KB
testcase_47 AC 505 ms
43,908 KB
testcase_48 WA -
testcase_49 AC 515 ms
44,036 KB
testcase_50 AC 513 ms
44,288 KB
testcase_51 AC 518 ms
44,036 KB
testcase_52 AC 511 ms
43,904 KB
testcase_53 AC 512 ms
44,164 KB
testcase_54 AC 513 ms
44,160 KB
testcase_55 AC 509 ms
43,916 KB
testcase_56 AC 516 ms
44,164 KB
testcase_57 AC 516 ms
44,036 KB
testcase_58 AC 519 ms
44,168 KB
testcase_59 AC 511 ms
44,156 KB
testcase_60 AC 506 ms
44,168 KB
testcase_61 AC 508 ms
44,224 KB
testcase_62 WA -
testcase_63 AC 514 ms
44,040 KB
testcase_64 AC 514 ms
44,032 KB
testcase_65 AC 512 ms
44,164 KB
testcase_66 AC 513 ms
44,284 KB
testcase_67 AC 514 ms
44,040 KB
testcase_68 AC 512 ms
44,032 KB
testcase_69 AC 514 ms
44,160 KB
testcase_70 AC 510 ms
44,164 KB
testcase_71 AC 512 ms
44,216 KB
testcase_72 AC 509 ms
44,032 KB
testcase_73 AC 512 ms
44,036 KB
testcase_74 AC 511 ms
44,160 KB
testcase_75 AC 508 ms
44,156 KB
testcase_76 AC 507 ms
44,164 KB
testcase_77 AC 508 ms
44,292 KB
testcase_78 AC 509 ms
44,164 KB
testcase_79 AC 505 ms
44,160 KB
testcase_80 AC 505 ms
43,900 KB
testcase_81 AC 506 ms
44,172 KB
testcase_82 AC 509 ms
44,032 KB
testcase_83 AC 513 ms
44,032 KB
testcase_84 AC 509 ms
44,160 KB
testcase_85 AC 507 ms
44,040 KB
testcase_86 AC 506 ms
44,036 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from itertools import *
from bisect import *
from math import *
from collections import *
from heapq import *
from random import *
from decimal import *
import numpy as np
import sys

sys.setrecursionlimit(10 ** 6)
int1 = lambda x: int(x) - 1
p2D = lambda x: print(*x, sep="\n")
def II(): return int(sys.stdin.readline())
def MI(): return map(int, sys.stdin.readline().split())
def MI1(): return map(int1, sys.stdin.readline().split())
def MF(): return map(float, sys.stdin.readline().split())
def LI(): return list(map(int, sys.stdin.readline().split()))
def LI1(): return list(map(int1, sys.stdin.readline().split()))
def LF(): return list(map(float, sys.stdin.readline().split()))
def LLI(rows_number): return [LI() for _ in range(rows_number)]
dij = [(1, 0), (0, 1), (-1, 0), (0, -1)]

def main():
    def popcnt(x):
        return bin(x).count('1')

    md=10**9+7
    n,k=MI()
    if k==0:
        print(factorial(n)%md)
        exit()
    aa=LI()
    aa.sort()
    for a0,a1 in zip(aa[-2::-1],aa[::-1]):
        if a0!=a0&a1:
            print(0)
            exit()
    ans=1
    pa=0
    for a in aa:
        ans*=factorial(popcnt(a)-popcnt(pa))
        ans%=md
        pa=a
    print(ans)

main()
0