結果

問題 No.890 移調の限られた旋法
ユーザー brthyyjpbrthyyjp
提出日時 2021-03-26 07:03:53
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 705 bytes
コンパイル時間 212 ms
コンパイル使用メモリ 82,368 KB
実行使用メモリ 98,604 KB
最終ジャッジ日時 2024-11-27 17:09:17
合計ジャッジ時間 4,436 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 73 ms
90,640 KB
testcase_01 AC 71 ms
90,916 KB
testcase_02 AC 71 ms
90,436 KB
testcase_03 AC 72 ms
90,392 KB
testcase_04 AC 71 ms
90,472 KB
testcase_05 AC 75 ms
90,980 KB
testcase_06 WA -
testcase_07 AC 71 ms
90,444 KB
testcase_08 AC 73 ms
90,804 KB
testcase_09 AC 75 ms
90,692 KB
testcase_10 AC 73 ms
90,420 KB
testcase_11 AC 71 ms
90,300 KB
testcase_12 AC 72 ms
90,216 KB
testcase_13 AC 118 ms
98,604 KB
testcase_14 AC 88 ms
98,048 KB
testcase_15 AC 93 ms
98,128 KB
testcase_16 AC 112 ms
98,076 KB
testcase_17 AC 95 ms
97,840 KB
testcase_18 AC 106 ms
97,872 KB
testcase_19 AC 94 ms
94,780 KB
testcase_20 AC 80 ms
92,828 KB
testcase_21 AC 75 ms
91,052 KB
testcase_22 AC 87 ms
96,776 KB
testcase_23 AC 88 ms
98,052 KB
testcase_24 AC 83 ms
95,028 KB
testcase_25 AC 75 ms
91,656 KB
testcase_26 AC 90 ms
98,256 KB
testcase_27 AC 90 ms
98,456 KB
testcase_28 AC 83 ms
95,336 KB
testcase_29 AC 80 ms
94,052 KB
testcase_30 AC 93 ms
97,868 KB
testcase_31 AC 93 ms
94,996 KB
testcase_32 AC 111 ms
97,304 KB
testcase_33 WA -
testcase_34 AC 106 ms
97,996 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = 10**6+50
mod = 10**9+7
fac = [1]*(N+1)
finv = [1]*(N+1)
for i in range(N):
    fac[i+1] = fac[i] * (i+1) % mod
finv[-1] = pow(fac[-1], mod-2, mod)
for i in reversed(range(N)):
    finv[i] = finv[i+1] * (i+1) % mod

def cmb1(n, r, mod):
    if r <0 or r > n:
        return 0
    r = min(r, n-r)
    return fac[n] * finv[r] * finv[n-r] % mod

n, k = map(int, input().split())
X = [0]*(n+1)
ans = 0
for i in range(2, n):
    if n%i == 0:
        p = n//i
        if k%p == 0:
            x = cmb1(i, k//p, mod)
            X[i] += x
            ans += X[i]
            j = 2*i
            while j <= n:
                if n%j == 0:
                    X[j] -= X[i]
                j += i
print(ans%mod)
0