結果

問題 No.1259 スイッチ
ユーザー rlangevinrlangevin
提出日時 2023-10-12 00:07:17
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 81 ms / 2,000 ms
コード長 685 bytes
コンパイル時間 229 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 76,500 KB
最終ジャッジ日時 2024-09-14 00:05:29
合計ジャッジ時間 6,615 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 65 ms
74,688 KB
testcase_01 AC 64 ms
75,788 KB
testcase_02 AC 64 ms
75,616 KB
testcase_03 AC 66 ms
74,184 KB
testcase_04 AC 64 ms
74,764 KB
testcase_05 AC 64 ms
74,536 KB
testcase_06 AC 65 ms
74,136 KB
testcase_07 AC 64 ms
75,404 KB
testcase_08 AC 64 ms
74,060 KB
testcase_09 AC 64 ms
74,748 KB
testcase_10 AC 76 ms
76,104 KB
testcase_11 AC 77 ms
75,632 KB
testcase_12 AC 75 ms
75,588 KB
testcase_13 AC 71 ms
75,316 KB
testcase_14 AC 73 ms
74,688 KB
testcase_15 AC 71 ms
74,860 KB
testcase_16 AC 76 ms
74,528 KB
testcase_17 AC 72 ms
75,632 KB
testcase_18 AC 76 ms
75,160 KB
testcase_19 AC 76 ms
75,732 KB
testcase_20 AC 71 ms
75,364 KB
testcase_21 AC 78 ms
75,780 KB
testcase_22 AC 68 ms
74,732 KB
testcase_23 AC 76 ms
75,244 KB
testcase_24 AC 74 ms
75,004 KB
testcase_25 AC 74 ms
75,216 KB
testcase_26 AC 81 ms
74,832 KB
testcase_27 AC 76 ms
75,504 KB
testcase_28 AC 73 ms
75,524 KB
testcase_29 AC 76 ms
74,980 KB
testcase_30 AC 73 ms
75,624 KB
testcase_31 AC 74 ms
74,788 KB
testcase_32 AC 68 ms
74,920 KB
testcase_33 AC 79 ms
75,132 KB
testcase_34 AC 73 ms
76,500 KB
testcase_35 AC 75 ms
75,976 KB
testcase_36 AC 74 ms
75,908 KB
testcase_37 AC 74 ms
74,768 KB
testcase_38 AC 72 ms
74,720 KB
testcase_39 AC 79 ms
74,624 KB
testcase_40 AC 77 ms
75,212 KB
testcase_41 AC 75 ms
75,000 KB
testcase_42 AC 78 ms
74,756 KB
testcase_43 AC 75 ms
76,272 KB
testcase_44 AC 78 ms
75,408 KB
testcase_45 AC 79 ms
75,436 KB
testcase_46 AC 73 ms
74,708 KB
testcase_47 AC 78 ms
75,012 KB
testcase_48 AC 72 ms
74,560 KB
testcase_49 AC 78 ms
74,408 KB
testcase_50 AC 72 ms
75,492 KB
testcase_51 AC 68 ms
74,712 KB
testcase_52 AC 78 ms
76,248 KB
testcase_53 AC 71 ms
75,860 KB
testcase_54 AC 79 ms
74,480 KB
testcase_55 AC 71 ms
74,548 KB
testcase_56 AC 73 ms
74,952 KB
testcase_57 AC 79 ms
74,936 KB
testcase_58 AC 73 ms
74,944 KB
testcase_59 AC 76 ms
75,940 KB
testcase_60 AC 80 ms
75,188 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N, K, M = map(int, input().split())
mod = 10 ** 9 + 7
n = 10 ** 6 + 5
fact = [1] * (n + 1)
invfact = [1] * (n + 1)
for i in range(1, n):
    fact[i + 1] = ((i+1) * fact[i]) % mod
invfact[n] = pow(fact[n], mod - 2, mod)
for i in range(n - 1, -1, -1):
    invfact[i] = invfact[i + 1] * (i + 1) % mod

def comb(n, r):
    if n < 0 or r < 0 or n - r < 0:
        return 0
    return fact[n] * invfact[r] * invfact[n - r] % mod


now = 0
for i in range(1, N + 1):
    if K % i == 0:
        now += fact[N - 1] * invfact[N - i] * pow(N, N - i, mod)
        now %= mod
        
if M == 1:
    print(now)
    exit()
    
ans = (pow(N, N, mod) - now) * pow(N - 1, mod - 2, mod)
print(ans % mod)
0