結果

問題 No.1259 スイッチ
ユーザー tamatotamato
提出日時 2020-10-16 22:46:36
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 1,209 bytes
コンパイル時間 375 ms
コンパイル使用メモリ 82,248 KB
実行使用メモリ 84,936 KB
最終ジャッジ日時 2024-07-20 23:05:40
合計ジャッジ時間 19,761 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 138 ms
82,432 KB
testcase_01 AC 133 ms
82,176 KB
testcase_02 AC 117 ms
82,560 KB
testcase_03 WA -
testcase_04 AC 128 ms
82,432 KB
testcase_05 AC 122 ms
82,176 KB
testcase_06 AC 123 ms
81,792 KB
testcase_07 AC 123 ms
82,304 KB
testcase_08 WA -
testcase_09 AC 124 ms
82,432 KB
testcase_10 AC 407 ms
84,480 KB
testcase_11 AC 574 ms
83,840 KB
testcase_12 AC 387 ms
83,712 KB
testcase_13 AC 280 ms
83,968 KB
testcase_14 AC 361 ms
84,224 KB
testcase_15 AC 269 ms
84,096 KB
testcase_16 AC 494 ms
84,224 KB
testcase_17 AC 337 ms
83,840 KB
testcase_18 AC 555 ms
83,940 KB
testcase_19 AC 545 ms
84,224 KB
testcase_20 AC 414 ms
84,224 KB
testcase_21 AC 592 ms
83,840 KB
testcase_22 AC 249 ms
83,584 KB
testcase_23 AC 539 ms
83,968 KB
testcase_24 AC 430 ms
84,352 KB
testcase_25 AC 421 ms
83,712 KB
testcase_26 AC 600 ms
84,224 KB
testcase_27 AC 526 ms
84,352 KB
testcase_28 AC 425 ms
83,968 KB
testcase_29 AC 505 ms
83,584 KB
testcase_30 AC 128 ms
82,816 KB
testcase_31 WA -
testcase_32 WA -
testcase_33 WA -
testcase_34 WA -
testcase_35 WA -
testcase_36 WA -
testcase_37 WA -
testcase_38 AC 130 ms
82,688 KB
testcase_39 WA -
testcase_40 WA -
testcase_41 WA -
testcase_42 WA -
testcase_43 WA -
testcase_44 WA -
testcase_45 WA -
testcase_46 WA -
testcase_47 WA -
testcase_48 AC 141 ms
82,944 KB
testcase_49 WA -
testcase_50 AC 374 ms
84,352 KB
testcase_51 AC 257 ms
83,840 KB
testcase_52 AC 575 ms
83,968 KB
testcase_53 AC 322 ms
83,968 KB
testcase_54 AC 573 ms
84,352 KB
testcase_55 AC 250 ms
84,096 KB
testcase_56 AC 347 ms
83,840 KB
testcase_57 AC 537 ms
83,968 KB
testcase_58 AC 398 ms
83,968 KB
testcase_59 AC 468 ms
83,968 KB
testcase_60 AC 623 ms
83,968 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 - 2, c - 2) * 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