結果

問題 No.890 移調の限られた旋法
ユーザー SalmonizeSalmonize
提出日時 2020-05-04 19:27:11
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 667 bytes
コンパイル時間 164 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 104,920 KB
最終ジャッジ日時 2024-06-24 21:16:25
合計ジャッジ時間 53,702 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 760 ms
89,164 KB
testcase_01 AC 814 ms
89,060 KB
testcase_02 AC 827 ms
89,272 KB
testcase_03 AC 751 ms
89,088 KB
testcase_04 AC 743 ms
89,108 KB
testcase_05 AC 756 ms
89,100 KB
testcase_06 AC 742 ms
89,172 KB
testcase_07 AC 747 ms
89,048 KB
testcase_08 AC 758 ms
88,984 KB
testcase_09 AC 745 ms
89,092 KB
testcase_10 AC 818 ms
89,160 KB
testcase_11 AC 742 ms
89,056 KB
testcase_12 AC 767 ms
89,264 KB
testcase_13 TLE -
testcase_14 TLE -
testcase_15 TLE -
testcase_16 TLE -
testcase_17 TLE -
testcase_18 TLE -
testcase_19 WA -
testcase_20 AC 1,272 ms
94,320 KB
testcase_21 AC 823 ms
90,156 KB
testcase_22 AC 1,876 ms
100,936 KB
testcase_23 TLE -
testcase_24 AC 1,515 ms
97,480 KB
testcase_25 AC 981 ms
90,972 KB
testcase_26 TLE -
testcase_27 TLE -
testcase_28 AC 1,665 ms
98,924 KB
testcase_29 AC 1,342 ms
95,480 KB
testcase_30 TLE -
testcase_31 AC 1,488 ms
96,960 KB
testcase_32 TLE -
testcase_33 TLE -
testcase_34 TLE -
権限があれば一括ダウンロードができます

ソースコード

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