結果

問題 No.890 移調の限られた旋法
ユーザー rlangevinrlangevin
提出日時 2023-10-10 12:37:43
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 75 ms / 2,000 ms
コード長 947 bytes
コンパイル時間 222 ms
コンパイル使用メモリ 82,124 KB
実行使用メモリ 78,432 KB
最終ジャッジ日時 2024-09-13 00:17:10
合計ジャッジ時間 3,203 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
55,184 KB
testcase_01 AC 42 ms
53,732 KB
testcase_02 AC 42 ms
54,252 KB
testcase_03 AC 43 ms
54,200 KB
testcase_04 AC 46 ms
54,384 KB
testcase_05 AC 43 ms
54,192 KB
testcase_06 AC 43 ms
55,316 KB
testcase_07 AC 42 ms
54,368 KB
testcase_08 AC 43 ms
54,564 KB
testcase_09 AC 43 ms
54,940 KB
testcase_10 AC 43 ms
55,232 KB
testcase_11 AC 44 ms
54,468 KB
testcase_12 AC 43 ms
54,100 KB
testcase_13 AC 74 ms
78,432 KB
testcase_14 AC 69 ms
77,008 KB
testcase_15 AC 72 ms
77,012 KB
testcase_16 AC 73 ms
77,140 KB
testcase_17 AC 69 ms
76,144 KB
testcase_18 AC 73 ms
77,024 KB
testcase_19 AC 62 ms
69,880 KB
testcase_20 AC 57 ms
66,260 KB
testcase_21 AC 50 ms
62,108 KB
testcase_22 AC 65 ms
73,052 KB
testcase_23 AC 71 ms
75,444 KB
testcase_24 AC 61 ms
69,768 KB
testcase_25 AC 52 ms
62,852 KB
testcase_26 AC 70 ms
76,600 KB
testcase_27 AC 70 ms
76,196 KB
testcase_28 AC 63 ms
71,588 KB
testcase_29 AC 58 ms
66,888 KB
testcase_30 AC 72 ms
77,272 KB
testcase_31 AC 64 ms
71,264 KB
testcase_32 AC 75 ms
77,660 KB
testcase_33 AC 74 ms
77,820 KB
testcase_34 AC 71 ms
76,324 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def div(n):
    i = 1
    SS = set()
    while i * i <= n:
        if n % i == 0:
            SS.add(i)
            SS.add(n//i)
        i += 1
    SS.discard(1)
    return sorted(list(SS), reverse=True)    

N, K = map(int, input().split())
mod = 10 ** 9 + 7
n = N + 5
fact = [1] * (n + 1)
invfact = [1] * (n + 1)
for i in range(1, n):
    fact[i + 1] = ((i+1) * fact[i]) % mod
invfact[n] = pow(fact[n], mod - 2, mod)
for i in range(n - 1, -1, -1):
    invfact[i] = invfact[i + 1] * (i + 1) % mod

def comb(n, r):
    if n < 0 or r < 0 or n - r < 0:
        return 0
    return fact[n] * invfact[r] * invfact[n - r] % mod


from collections import *

D = defaultdict(int)
for d in div(N):
    if K % d:
        continue
    D[d] += comb(N // d, K // d)
    D[d] %= mod
    for dd in div(d):
        if d == dd:
            continue
        D[dd] -= D[d]
        D[dd] %= mod

ans = 0
for k, v in D.items():
    ans += v
    ans %= mod

print(ans)
0