結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 81 ms
90,624 KB
testcase_01 AC 83 ms
90,752 KB
testcase_02 AC 82 ms
90,496 KB
testcase_03 AC 87 ms
90,752 KB
testcase_04 AC 82 ms
90,624 KB
testcase_05 AC 82 ms
90,624 KB
testcase_06 WA -
testcase_07 AC 80 ms
90,624 KB
testcase_08 AC 81 ms
90,624 KB
testcase_09 AC 79 ms
90,496 KB
testcase_10 AC 84 ms
90,624 KB
testcase_11 AC 82 ms
90,496 KB
testcase_12 AC 81 ms
90,752 KB
testcase_13 WA -
testcase_14 AC 99 ms
98,176 KB
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 86 ms
93,184 KB
testcase_21 AC 83 ms
91,136 KB
testcase_22 AC 101 ms
97,024 KB
testcase_23 AC 103 ms
97,792 KB
testcase_24 AC 94 ms
94,976 KB
testcase_25 AC 84 ms
91,648 KB
testcase_26 WA -
testcase_27 AC 100 ms
98,560 KB
testcase_28 AC 90 ms
95,488 KB
testcase_29 AC 89 ms
94,336 KB
testcase_30 WA -
testcase_31 WA -
testcase_32 WA -
testcase_33 WA -
testcase_34 WA -
権限があれば一括ダウンロードができます

ソースコード

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
                j += i
print(ans)
0