結果

問題 No.890 移調の限られた旋法
ユーザー SalmonizeSalmonize
提出日時 2020-05-04 16:03:21
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 1,163 bytes
コンパイル時間 89 ms
コンパイル使用メモリ 12,928 KB
実行使用メモリ 108,256 KB
最終ジャッジ日時 2024-06-24 12:13:55
合計ジャッジ時間 35,217 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 773 ms
89,228 KB
testcase_01 AC 778 ms
89,204 KB
testcase_02 AC 767 ms
89,196 KB
testcase_03 AC 764 ms
89,088 KB
testcase_04 AC 790 ms
89,280 KB
testcase_05 AC 806 ms
89,088 KB
testcase_06 AC 768 ms
89,204 KB
testcase_07 AC 766 ms
89,364 KB
testcase_08 AC 761 ms
89,200 KB
testcase_09 AC 758 ms
89,276 KB
testcase_10 AC 759 ms
89,364 KB
testcase_11 AC 771 ms
89,160 KB
testcase_12 AC 768 ms
89,292 KB
testcase_13 WA -
testcase_14 AC 1,067 ms
107,964 KB
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 AC 944 ms
99,132 KB
testcase_20 AC 865 ms
95,768 KB
testcase_21 AC 813 ms
90,612 KB
testcase_22 AC 1,024 ms
103,548 KB
testcase_23 AC 1,058 ms
106,748 KB
testcase_24 AC 944 ms
99,496 KB
testcase_25 AC 783 ms
91,684 KB
testcase_26 WA -
testcase_27 AC 1,054 ms
107,564 KB
testcase_28 AC 949 ms
101,076 KB
testcase_29 AC 897 ms
96,964 KB
testcase_30 WA -
testcase_31 WA -
testcase_32 WA -
testcase_33 WA -
testcase_34 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

def divisor(n):
    ass = []
    for i in range(1, int((n+1)**0.5)+1):
        if n%i == 0:
            ass.append(i)
            if i*i < n:
                ass.append(n//i)
    return ass #sortされていない
    
def primes(n):
    is_prime = [True] * (n + 1)
    is_prime[0] = is_prime[1] = False
    for i in range(2, int((n+1)**0.5)+1):
        if is_prime[i]:
            for j in range(i *2, n + 1, i):
                is_prime[j] = False
    res = [i for i in range(n+1) if is_prime[i]]
    return res

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)
for x in set(divisor(n)) & set(divisor(k)):
    res[x] = nCr(n//x, k//x)
res[1] = 0
prl = primes(n)
for i in range(n+1):
    if res[i]:
        for p in prl:
            if i*p > n: break
            res[i] = (res[i] - res[i*p]) % mod
print(sum(res) % mod)
0