結果

問題 No.1706 Many Bus Stops (hard)
ユーザー aaaaaaaaaa2230aaaaaaaaaa2230
提出日時 2021-10-09 17:27:51
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 47 ms / 2,000 ms
コード長 611 bytes
コンパイル時間 327 ms
コンパイル使用メモリ 82,356 KB
実行使用メモリ 62,128 KB
最終ジャッジ日時 2024-09-13 03:29:08
合計ジャッジ時間 3,577 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
53,468 KB
testcase_01 AC 37 ms
52,772 KB
testcase_02 AC 43 ms
61,160 KB
testcase_03 AC 44 ms
61,364 KB
testcase_04 AC 44 ms
60,756 KB
testcase_05 AC 43 ms
61,016 KB
testcase_06 AC 44 ms
61,688 KB
testcase_07 AC 47 ms
62,128 KB
testcase_08 AC 44 ms
61,232 KB
testcase_09 AC 43 ms
60,824 KB
testcase_10 AC 43 ms
60,692 KB
testcase_11 AC 44 ms
60,676 KB
testcase_12 AC 44 ms
61,340 KB
testcase_13 AC 44 ms
60,580 KB
testcase_14 AC 44 ms
60,292 KB
testcase_15 AC 44 ms
60,988 KB
testcase_16 AC 44 ms
60,936 KB
testcase_17 AC 45 ms
60,560 KB
testcase_18 AC 44 ms
61,296 KB
testcase_19 AC 44 ms
60,756 KB
testcase_20 AC 44 ms
61,576 KB
testcase_21 AC 43 ms
61,152 KB
testcase_22 AC 43 ms
61,016 KB
testcase_23 AC 44 ms
61,876 KB
testcase_24 AC 43 ms
60,532 KB
testcase_25 AC 44 ms
60,836 KB
testcase_26 AC 44 ms
60,768 KB
testcase_27 AC 43 ms
60,176 KB
testcase_28 AC 43 ms
61,824 KB
testcase_29 AC 44 ms
60,356 KB
testcase_30 AC 45 ms
61,284 KB
testcase_31 AC 44 ms
60,888 KB
testcase_32 AC 44 ms
60,960 KB
testcase_33 AC 44 ms
61,412 KB
testcase_34 AC 43 ms
61,080 KB
testcase_35 AC 43 ms
61,640 KB
testcase_36 AC 44 ms
60,532 KB
testcase_37 AC 44 ms
61,288 KB
testcase_38 AC 43 ms
60,836 KB
testcase_39 AC 43 ms
61,428 KB
testcase_40 AC 43 ms
60,768 KB
testcase_41 AC 44 ms
61,472 KB
testcase_42 AC 44 ms
61,412 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

c,n,m = map(int,input().split())
mod = 10**9+7

cinv = pow(c,mod-2,mod)
A = [[cinv,0,0,cinv],[0,cinv,(c-1)*cinv%mod,(c-2)*cinv%mod],[1,0,0,0],[0,1,0,0]]

def calc(X,Y):
    ans = [[0]*4 for i in range(4)]
    for i in range(4):
        for j in range(4):
            for k in range(4):
                ans[i][j] += X[i][k]*Y[k][j]
                ans[i][j] %= mod
    return ans


base = [[0]*4 for i in range(4)]
for i in range(4):
    base[i][i] = 1

while n:
    if n%2:
        base = calc(A,base)

    n //= 2
    A = calc(A,A)

p = (base[2][0]*cinv+base[2][2])%mod

ans = (1-pow(1-p,m,mod))%mod
print(ans)
0