結果

問題 No.890 移調の限られた旋法
ユーザー kohei2019kohei2019
提出日時 2022-05-10 22:09:47
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 248 ms / 2,000 ms
コード長 1,904 bytes
コンパイル時間 141 ms
コンパイル使用メモリ 82,376 KB
実行使用メモリ 246,784 KB
最終ジャッジ日時 2024-07-18 05:03:17
合計ジャッジ時間 5,851 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
53,936 KB
testcase_01 AC 36 ms
54,588 KB
testcase_02 AC 34 ms
54,040 KB
testcase_03 AC 33 ms
53,544 KB
testcase_04 AC 33 ms
53,236 KB
testcase_05 AC 32 ms
53,264 KB
testcase_06 AC 32 ms
53,196 KB
testcase_07 AC 31 ms
54,108 KB
testcase_08 AC 33 ms
54,368 KB
testcase_09 AC 32 ms
54,424 KB
testcase_10 AC 32 ms
52,876 KB
testcase_11 AC 32 ms
53,452 KB
testcase_12 AC 36 ms
54,428 KB
testcase_13 AC 248 ms
244,008 KB
testcase_14 AC 239 ms
243,412 KB
testcase_15 AC 234 ms
244,036 KB
testcase_16 AC 239 ms
243,396 KB
testcase_17 AC 221 ms
242,904 KB
testcase_18 AC 223 ms
242,880 KB
testcase_19 AC 147 ms
177,084 KB
testcase_20 AC 109 ms
132,944 KB
testcase_21 AC 54 ms
76,356 KB
testcase_22 AC 192 ms
225,536 KB
testcase_23 AC 224 ms
244,604 KB
testcase_24 AC 149 ms
176,432 KB
testcase_25 AC 66 ms
89,004 KB
testcase_26 AC 232 ms
245,024 KB
testcase_27 AC 241 ms
244,880 KB
testcase_28 AC 180 ms
206,368 KB
testcase_29 AC 139 ms
151,376 KB
testcase_30 AC 236 ms
243,544 KB
testcase_31 AC 148 ms
176,412 KB
testcase_32 AC 206 ms
246,024 KB
testcase_33 AC 214 ms
246,400 KB
testcase_34 AC 212 ms
246,784 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import math
class NCK:
    '''
    最大値 :N
    mod
    '''
    def __init__(self,N,mod):
        self.mod = mod
        self.N = N
        self.factmod = [1,1]
        for i in range(2,self.N+1):
            self.factmod.append((self.factmod[-1]*i)%self.mod)

        self.inv = [0,1]
        for i in range(2, N + 1):
            self.inv.append((-self.inv[self.mod % i] * (self.mod // i)) % self.mod)

        self.invfact = [1,1]
        for i in range(2, N + 1):
            self.invfact.append((self.invfact[-1]*self.inv[i])%self.mod)

    def nCk(self,a,b):
        if a < b:
            return 0
        return ((self.factmod[a]*self.invfact[b]%self.mod)*self.invfact[a-b])%self.mod
    
    def invnCk(self,a,b):
        return ((self.factmod[a-b]*self.invfact[a]%self.mod)*self.factmod[b])%self.mod

def modPow(a,n,mod):#繰り返し二乗法 a**n % mod
    if n==0:
        return 1
    if n==1:
        return a%mod
    if n & 1:
        return (a*modPow(a,n-1,mod)) % mod
    t = modPow(a,n>>1,mod)
    return (t*t)%mod

def factorization(N):#素因数分解√N
    arr = []
    temp = N
    for i in range(2, int(-(-N**0.5//1))+1):
        if temp%i==0:
            cnt=0
            while temp%i==0:
                cnt+=1
                temp //= i
            arr.append([i, cnt])
    if temp!=1:
        arr.append([temp, 1])
    if arr==[]:
        arr.append([N, 1])
    return arr #[素因数、個数]


N,K = map(int,input().split())
mod =10**9+7
nck = NCK(N,mod)
ans = 0
lsp = factorization(math.gcd(K,N))
lsp2 = [i for i,j in lsp]

if lsp2==[1]:
    print(0)
    exit()

NN = len(lsp2)

for i in range(1,2**NN):
    ll = []
    for j in range(NN):
        if (i >> j) & 1:
            ll.append(lsp2[j])
    v = 1
    for l in ll:
        v *= l
    if len(ll)%2==1:
        ans += nck.nCk(N//v, K//v)
    else:
        ans -= nck.nCk(N//v, K//v)
    ans %= mod

print(ans)
0