結果

問題 No.1259 スイッチ
ユーザー tamatotamato
提出日時 2020-10-16 22:48:32
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 585 ms / 2,000 ms
コード長 1,209 bytes
コンパイル時間 348 ms
コンパイル使用メモリ 82,640 KB
実行使用メモリ 85,880 KB
最終ジャッジ日時 2024-07-20 23:09:33
合計ジャッジ時間 18,214 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 110 ms
82,716 KB
testcase_01 AC 102 ms
82,812 KB
testcase_02 AC 109 ms
82,672 KB
testcase_03 AC 118 ms
82,192 KB
testcase_04 AC 101 ms
82,720 KB
testcase_05 AC 96 ms
84,132 KB
testcase_06 AC 97 ms
82,128 KB
testcase_07 AC 101 ms
83,096 KB
testcase_08 AC 92 ms
83,496 KB
testcase_09 AC 95 ms
82,740 KB
testcase_10 AC 378 ms
85,140 KB
testcase_11 AC 544 ms
84,672 KB
testcase_12 AC 365 ms
84,804 KB
testcase_13 AC 253 ms
83,972 KB
testcase_14 AC 325 ms
85,104 KB
testcase_15 AC 246 ms
84,536 KB
testcase_16 AC 466 ms
84,852 KB
testcase_17 AC 318 ms
85,236 KB
testcase_18 AC 533 ms
84,764 KB
testcase_19 AC 527 ms
84,644 KB
testcase_20 AC 389 ms
83,824 KB
testcase_21 AC 559 ms
84,244 KB
testcase_22 AC 238 ms
85,880 KB
testcase_23 AC 517 ms
85,392 KB
testcase_24 AC 404 ms
84,328 KB
testcase_25 AC 399 ms
84,472 KB
testcase_26 AC 585 ms
83,740 KB
testcase_27 AC 482 ms
84,176 KB
testcase_28 AC 398 ms
84,120 KB
testcase_29 AC 475 ms
85,692 KB
testcase_30 AC 115 ms
84,648 KB
testcase_31 AC 112 ms
83,088 KB
testcase_32 AC 108 ms
83,220 KB
testcase_33 AC 126 ms
83,116 KB
testcase_34 AC 113 ms
84,028 KB
testcase_35 AC 113 ms
83,036 KB
testcase_36 AC 112 ms
83,368 KB
testcase_37 AC 116 ms
83,068 KB
testcase_38 AC 121 ms
83,128 KB
testcase_39 AC 120 ms
82,656 KB
testcase_40 AC 123 ms
83,212 KB
testcase_41 AC 113 ms
84,136 KB
testcase_42 AC 116 ms
84,264 KB
testcase_43 AC 115 ms
83,452 KB
testcase_44 AC 120 ms
82,944 KB
testcase_45 AC 122 ms
83,724 KB
testcase_46 AC 113 ms
84,200 KB
testcase_47 AC 116 ms
82,956 KB
testcase_48 AC 112 ms
84,168 KB
testcase_49 AC 117 ms
84,576 KB
testcase_50 AC 348 ms
84,604 KB
testcase_51 AC 234 ms
85,128 KB
testcase_52 AC 557 ms
85,328 KB
testcase_53 AC 291 ms
84,516 KB
testcase_54 AC 553 ms
84,068 KB
testcase_55 AC 229 ms
84,124 KB
testcase_56 AC 323 ms
85,476 KB
testcase_57 AC 518 ms
84,976 KB
testcase_58 AC 379 ms
85,104 KB
testcase_59 AC 445 ms
85,352 KB
testcase_60 AC 583 ms
84,196 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

mod = 1000000007
eps = 10**-9


def main():
    import sys
    input = sys.stdin.readline

    # comb init
    # mod = 1000000007
    nmax = 10 ** 6 + 10  # change here
    fac = [0] * nmax
    finv = [0] * nmax
    inv = [0] * nmax
    fac[0] = 1
    fac[1] = 1
    finv[0] = 1
    finv[1] = 1
    inv[1] = 1
    for i in range(2, nmax):
        fac[i] = fac[i - 1] * i % mod
        inv[i] = mod - inv[mod % i] * (mod // i) % mod
        finv[i] = finv[i - 1] * inv[i] % mod

    def comb(n, r):
        if n < r:
            return 0
        else:
            return (fac[n] * ((finv[r] * finv[n - r]) % mod)) % mod

    def P(n, r):
        return (fac[n] * finv[n - r])%mod

    N, K, M = map(int, input().split())
    if M == 1:
        ans = pow(N, N-1, mod)
        for c in range(2, N + 1):
            if K % c == 0:
                ans = (ans + (P(N - 1, c - 1) * pow(N, N - c, mod)) % mod) % mod
        print(ans)
        exit()
    ans = 0
    for c in range(2, N+1):
        ans = (ans + ((P(N - 2, c - 2) * c)%mod * pow(N, N - c, mod))%mod)%mod
        if K % c == 0:
            ans = (ans - (P(N - 2, c-2)* pow(N, N - c, mod))%mod)%mod
    print(ans)


if __name__ == '__main__':
    main()
0