結果

問題 No.890 移調の限られた旋法
ユーザー titiatitia
提出日時 2019-09-20 23:08:40
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 923 bytes
コンパイル時間 211 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 58,112 KB
最終ジャッジ日時 2024-09-14 19:50:38
合計ジャッジ時間 17,126 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 431 ms
57,856 KB
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 AC 433 ms
57,984 KB
testcase_06 WA -
testcase_07 AC 457 ms
57,856 KB
testcase_08 AC 435 ms
57,728 KB
testcase_09 WA -
testcase_10 AC 430 ms
57,984 KB
testcase_11 AC 427 ms
57,856 KB
testcase_12 WA -
testcase_13 RE -
testcase_14 AC 434 ms
57,856 KB
testcase_15 RE -
testcase_16 RE -
testcase_17 RE -
testcase_18 RE -
testcase_19 WA -
testcase_20 AC 441 ms
57,728 KB
testcase_21 AC 430 ms
57,856 KB
testcase_22 RE -
testcase_23 AC 432 ms
57,856 KB
testcase_24 WA -
testcase_25 AC 437 ms
57,856 KB
testcase_26 RE -
testcase_27 WA -
testcase_28 AC 430 ms
57,856 KB
testcase_29 WA -
testcase_30 RE -
testcase_31 WA -
testcase_32 RE -
testcase_33 RE -
testcase_34 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

N,K=map(int,input().split())
mod=10**9+7

import math

def fact(x):
    L=int(math.sqrt(x))

    FA=dict()

    for i in range(2,L+2):
        while x%i==0:
            FA[i]=FA.get(i,0)+1
            x=x//i

    if x!=1:
        FA[x]=FA.get(x,0)+1

    return FA


FACT=[1]
for i in range(1,10**6+1):
    FACT.append(FACT[-1]*i%mod)

FACT_INV=[pow(FACT[-1],mod-2,mod)]
for i in range(2*10**5,0,-1):
    FACT_INV.append(FACT_INV[-1]*i%mod)

FACT_INV.reverse()

def Combi(a,b):
    if 0<=b<=a:
        return FACT[a]*FACT_INV[b]*FACT_INV[a-b]%mod
    else:
        return 0


F1=fact(N)
F2=fact(K)

LIST=[]

for f in F1:
    if f in F2:
        LIST.append(f)

ANS=0
count=1

from itertools import combinations

for i in range(1,len(LIST)+1):
    L=list(combinations(LIST,i))
    for l in L:
        x=1
        for ls in l:
            x*=ls

        ANS=(ANS+Combi(N//x,K//x)*count)%mod

    count*=-1


print(ANS)
    

0