結果

問題 No.890 移調の限られた旋法
ユーザー SalmonizeSalmonize
提出日時 2020-05-04 19:29:41
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 667 bytes
コンパイル時間 321 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 98,176 KB
最終ジャッジ日時 2024-06-24 21:18:45
合計ジャッジ時間 4,522 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 60 ms
73,856 KB
testcase_01 AC 61 ms
74,368 KB
testcase_02 AC 61 ms
73,984 KB
testcase_03 AC 61 ms
74,368 KB
testcase_04 AC 61 ms
74,112 KB
testcase_05 AC 63 ms
74,496 KB
testcase_06 AC 63 ms
74,112 KB
testcase_07 AC 62 ms
74,240 KB
testcase_08 AC 61 ms
73,856 KB
testcase_09 AC 61 ms
74,368 KB
testcase_10 AC 60 ms
74,112 KB
testcase_11 AC 60 ms
74,316 KB
testcase_12 AC 62 ms
73,960 KB
testcase_13 WA -
testcase_14 AC 118 ms
97,024 KB
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 94 ms
85,760 KB
testcase_21 AC 76 ms
80,256 KB
testcase_22 AC 111 ms
93,568 KB
testcase_23 AC 127 ms
96,640 KB
testcase_24 AC 105 ms
89,088 KB
testcase_25 AC 79 ms
81,152 KB
testcase_26 WA -
testcase_27 AC 132 ms
97,280 KB
testcase_28 AC 109 ms
90,752 KB
testcase_29 AC 92 ms
86,784 KB
testcase_30 AC 121 ms
95,744 KB
testcase_31 AC 101 ms
88,576 KB
testcase_32 WA -
testcase_33 AC 121 ms
95,616 KB
testcase_34 AC 119 ms
95,468 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(n//p, 1, -1):
            sieve[i*p] = 0
            res[i] = (res[i] - res[i*p]) % mod
print(sum(res) % mod)
0