結果

問題 No.890 移調の限られた旋法
ユーザー SalmonizeSalmonize
提出日時 2020-05-04 19:58:16
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 161 ms / 2,000 ms
コード長 664 bytes
コンパイル時間 309 ms
コンパイル使用メモリ 82,312 KB
実行使用メモリ 98,560 KB
最終ジャッジ日時 2024-06-24 21:49:10
合計ジャッジ時間 5,242 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 69 ms
73,728 KB
testcase_01 AC 71 ms
74,240 KB
testcase_02 AC 70 ms
74,496 KB
testcase_03 AC 72 ms
74,240 KB
testcase_04 AC 71 ms
74,112 KB
testcase_05 AC 70 ms
74,240 KB
testcase_06 AC 73 ms
74,240 KB
testcase_07 AC 72 ms
74,240 KB
testcase_08 AC 71 ms
74,112 KB
testcase_09 AC 72 ms
74,112 KB
testcase_10 AC 72 ms
73,856 KB
testcase_11 AC 72 ms
73,984 KB
testcase_12 AC 72 ms
74,240 KB
testcase_13 AC 160 ms
98,560 KB
testcase_14 AC 147 ms
97,792 KB
testcase_15 AC 139 ms
98,048 KB
testcase_16 AC 157 ms
98,560 KB
testcase_17 AC 151 ms
96,512 KB
testcase_18 AC 146 ms
96,128 KB
testcase_19 AC 115 ms
88,960 KB
testcase_20 AC 105 ms
85,760 KB
testcase_21 AC 85 ms
80,128 KB
testcase_22 AC 131 ms
93,952 KB
testcase_23 AC 151 ms
96,896 KB
testcase_24 AC 119 ms
89,344 KB
testcase_25 AC 89 ms
81,280 KB
testcase_26 AC 140 ms
97,536 KB
testcase_27 AC 161 ms
97,920 KB
testcase_28 AC 125 ms
91,648 KB
testcase_29 AC 109 ms
86,912 KB
testcase_30 AC 146 ms
96,128 KB
testcase_31 AC 115 ms
88,832 KB
testcase_32 AC 135 ms
95,104 KB
testcase_33 AC 147 ms
96,296 KB
testcase_34 AC 146 ms
95,744 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n_ = 10**6
mod = 10**9 + 7
fun = [1] * (n_ + 1)
for i in range(1, n_ + 1):
    fun[i] = fun[i - 1] * i % mod
rev = [1] * (n_ + 1)
rev[n_] = pow(fun[n_], mod - 2, mod)
for i in range(n_ - 1, 0, -1):
    rev[i] = rev[i + 1] * (i + 1) % mod

def nCr(n, r):
    if r > n:
        return 0
    return fun[n] * rev[r] % mod * rev[n - r] % mod
    
n, k = map(int, input().split())
res = [0]*(n+1)
sieve = [1]*(n+1)
for x in range(2,k+1):
    if n % x == k % x == 0:
        res[x] = nCr(n//x, k//x)
for p in range(2, n+1):
    if sieve[p]:
        for i in range(2, n//p+1):
            sieve[i*p] = 0
            res[i] = (res[i] - res[i*p]) % mod
print(sum(res) % mod)
0