結果

問題 No.890 移調の限られた旋法
ユーザー rlangevinrlangevin
提出日時 2023-10-10 12:30:31
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 976 bytes
コンパイル時間 193 ms
コンパイル使用メモリ 82,308 KB
実行使用メモリ 79,608 KB
最終ジャッジ日時 2024-09-13 00:17:06
合計ジャッジ時間 3,621 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
54,332 KB
testcase_01 AC 45 ms
54,652 KB
testcase_02 AC 44 ms
54,608 KB
testcase_03 AC 43 ms
54,564 KB
testcase_04 AC 43 ms
55,192 KB
testcase_05 AC 43 ms
55,160 KB
testcase_06 AC 43 ms
55,064 KB
testcase_07 AC 43 ms
54,232 KB
testcase_08 AC 43 ms
54,316 KB
testcase_09 AC 45 ms
54,920 KB
testcase_10 AC 43 ms
53,876 KB
testcase_11 AC 43 ms
55,880 KB
testcase_12 AC 44 ms
54,328 KB
testcase_13 WA -
testcase_14 AC 71 ms
76,236 KB
testcase_15 AC 72 ms
77,376 KB
testcase_16 AC 74 ms
77,536 KB
testcase_17 AC 79 ms
79,552 KB
testcase_18 AC 76 ms
78,884 KB
testcase_19 AC 61 ms
69,696 KB
testcase_20 AC 56 ms
66,996 KB
testcase_21 AC 50 ms
62,040 KB
testcase_22 AC 66 ms
73,344 KB
testcase_23 AC 69 ms
75,572 KB
testcase_24 AC 63 ms
70,524 KB
testcase_25 AC 52 ms
63,520 KB
testcase_26 AC 70 ms
76,756 KB
testcase_27 AC 72 ms
76,420 KB
testcase_28 AC 62 ms
71,780 KB
testcase_29 AC 59 ms
68,956 KB
testcase_30 AC 75 ms
78,788 KB
testcase_31 AC 67 ms
72,680 KB
testcase_32 AC 76 ms
79,608 KB
testcase_33 AC 78 ms
79,360 KB
testcase_34 AC 74 ms
78,744 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[N // d] += comb(N // d, K // d)
    D[N // d] %= mod
    for dd in div(N // d):
        if N // d == dd:
            continue
        D[N // d] -= D[dd]
        D[N // d] %= mod

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

print(ans)
0