結果

問題 No.1259 スイッチ
ユーザー H3PO4H3PO4
提出日時 2022-06-08 08:40:20
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 69 ms / 2,000 ms
コード長 700 bytes
コンパイル時間 840 ms
コンパイル使用メモリ 82,364 KB
実行使用メモリ 67,716 KB
最終ジャッジ日時 2024-09-21 05:03:38
合計ジャッジ時間 6,084 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,888 KB
testcase_01 AC 38 ms
53,104 KB
testcase_02 AC 38 ms
53,288 KB
testcase_03 AC 37 ms
52,340 KB
testcase_04 AC 38 ms
53,744 KB
testcase_05 AC 38 ms
52,468 KB
testcase_06 AC 37 ms
53,068 KB
testcase_07 AC 38 ms
53,752 KB
testcase_08 AC 39 ms
52,864 KB
testcase_09 AC 39 ms
52,880 KB
testcase_10 AC 59 ms
64,104 KB
testcase_11 AC 69 ms
65,740 KB
testcase_12 AC 58 ms
63,432 KB
testcase_13 AC 52 ms
61,068 KB
testcase_14 AC 56 ms
62,504 KB
testcase_15 AC 52 ms
61,396 KB
testcase_16 AC 63 ms
65,072 KB
testcase_17 AC 55 ms
63,468 KB
testcase_18 AC 67 ms
65,772 KB
testcase_19 AC 67 ms
66,048 KB
testcase_20 AC 59 ms
63,996 KB
testcase_21 AC 68 ms
66,900 KB
testcase_22 AC 51 ms
61,236 KB
testcase_23 AC 65 ms
65,452 KB
testcase_24 AC 61 ms
64,400 KB
testcase_25 AC 64 ms
65,076 KB
testcase_26 AC 69 ms
66,592 KB
testcase_27 AC 64 ms
64,936 KB
testcase_28 AC 61 ms
63,904 KB
testcase_29 AC 66 ms
66,140 KB
testcase_30 AC 56 ms
62,968 KB
testcase_31 AC 63 ms
64,772 KB
testcase_32 AC 50 ms
60,836 KB
testcase_33 AC 69 ms
66,192 KB
testcase_34 AC 57 ms
63,416 KB
testcase_35 AC 63 ms
64,828 KB
testcase_36 AC 61 ms
64,016 KB
testcase_37 AC 60 ms
64,628 KB
testcase_38 AC 60 ms
63,660 KB
testcase_39 AC 68 ms
66,496 KB
testcase_40 AC 68 ms
66,536 KB
testcase_41 AC 63 ms
65,788 KB
testcase_42 AC 69 ms
67,716 KB
testcase_43 AC 57 ms
63,704 KB
testcase_44 AC 68 ms
66,392 KB
testcase_45 AC 69 ms
66,804 KB
testcase_46 AC 57 ms
63,076 KB
testcase_47 AC 69 ms
66,504 KB
testcase_48 AC 54 ms
63,244 KB
testcase_49 AC 68 ms
65,912 KB
testcase_50 AC 57 ms
63,152 KB
testcase_51 AC 50 ms
61,460 KB
testcase_52 AC 69 ms
66,176 KB
testcase_53 AC 54 ms
62,092 KB
testcase_54 AC 67 ms
65,676 KB
testcase_55 AC 50 ms
61,228 KB
testcase_56 AC 54 ms
62,272 KB
testcase_57 AC 65 ms
65,128 KB
testcase_58 AC 58 ms
63,672 KB
testcase_59 AC 63 ms
64,320 KB
testcase_60 AC 69 ms
67,128 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

MOD = 10 ** 9 + 7

modinv = lambda a, mod=MOD: pow(a, mod - 2, mod)


def solve(N, K, M):
    if M == 1:
        return calc_1(N, K)
    else:
        return (pow(N, N, MOD) - calc_1(N, K)) * modinv(N - 1) % MOD


def calc_1(N, K):
    res = 0
    perm_tmp = 1
    pow_table = create_pow_table(N)
    for i in range(1, N + 1):
        if not K % i:
            res += perm_tmp * pow_table[N - i]
        perm_tmp *= N - i
        perm_tmp %= MOD
    res %= MOD
    return res


def create_pow_table(length: int) -> list:
    pow_table = [1] * length
    for i in range(1, length):
        pow_table[i] = pow_table[i - 1] * length % MOD
    return pow_table


print(solve(*map(int, input().split())))
0