結果

問題 No.1706 Many Bus Stops (hard)
ユーザー Kiri8128Kiri8128
提出日時 2021-10-08 23:22:14
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 49 ms / 2,000 ms
コード長 732 bytes
コンパイル時間 210 ms
コンパイル使用メモリ 82,444 KB
実行使用メモリ 62,544 KB
最終ジャッジ日時 2024-07-23 07:18:49
合計ジャッジ時間 3,430 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
54,432 KB
testcase_01 AC 41 ms
52,956 KB
testcase_02 AC 46 ms
61,104 KB
testcase_03 AC 47 ms
61,820 KB
testcase_04 AC 46 ms
61,584 KB
testcase_05 AC 48 ms
62,500 KB
testcase_06 AC 46 ms
61,576 KB
testcase_07 AC 48 ms
62,060 KB
testcase_08 AC 46 ms
60,632 KB
testcase_09 AC 47 ms
61,000 KB
testcase_10 AC 46 ms
61,756 KB
testcase_11 AC 47 ms
61,284 KB
testcase_12 AC 46 ms
61,444 KB
testcase_13 AC 46 ms
62,544 KB
testcase_14 AC 48 ms
61,776 KB
testcase_15 AC 47 ms
61,792 KB
testcase_16 AC 45 ms
61,472 KB
testcase_17 AC 45 ms
60,696 KB
testcase_18 AC 45 ms
62,416 KB
testcase_19 AC 46 ms
60,528 KB
testcase_20 AC 46 ms
61,884 KB
testcase_21 AC 45 ms
61,164 KB
testcase_22 AC 46 ms
60,888 KB
testcase_23 AC 46 ms
61,212 KB
testcase_24 AC 47 ms
61,172 KB
testcase_25 AC 47 ms
61,008 KB
testcase_26 AC 45 ms
60,632 KB
testcase_27 AC 46 ms
60,892 KB
testcase_28 AC 47 ms
61,360 KB
testcase_29 AC 49 ms
61,176 KB
testcase_30 AC 46 ms
61,828 KB
testcase_31 AC 47 ms
61,588 KB
testcase_32 AC 46 ms
60,664 KB
testcase_33 AC 49 ms
60,756 KB
testcase_34 AC 48 ms
61,352 KB
testcase_35 AC 46 ms
61,420 KB
testcase_36 AC 48 ms
60,856 KB
testcase_37 AC 45 ms
61,148 KB
testcase_38 AC 46 ms
61,360 KB
testcase_39 AC 46 ms
61,136 KB
testcase_40 AC 45 ms
60,448 KB
testcase_41 AC 47 ms
60,924 KB
testcase_42 AC 46 ms
62,472 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def mmult(A, B):
    global mod
    n, m, l = len(A), len(B), len(B[0])
    ret = [[0] * l for _ in range(n)]
    for i in range(n):
        for j in range(m):
            for k in range(l):
                ret[i][k] = (ret[i][k] + A[i][j] * B[j][k]) % mod
    return ret
def mpow(A, n):
    if n == 1: return A
    if n == 0: return [[1 if i == j else 0 for j in range(len(A))] for i in range(len(A))]
    return mmult(mpow(A, n - 1), A) if n % 2 else mpow(mmult(A, A), n // 2)

C, N, M = map(int, input().split())
mod = 10 ** 9 + 7
iv = pow(C, mod - 2, mod)
iv1 = iv * (C - 1) % mod
iv2 = iv * (C - 2) % mod
X = [[iv, 0, 0, iv], [0, iv, iv1, iv2], [1, 0, 0, 0], [0, 1, 0, 0]]

print((1 - pow(1 - mpow(X, N)[0][0], M, mod)) % mod)
0