結果

問題 No.1706 Many Bus Stops (hard)
ユーザー puznekopuzneko
提出日時 2021-10-30 00:32:36
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 49 ms / 2,000 ms
コード長 1,014 bytes
コンパイル時間 455 ms
コンパイル使用メモリ 82,308 KB
実行使用メモリ 62,384 KB
最終ジャッジ日時 2024-10-07 13:14:05
合計ジャッジ時間 3,700 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
53,340 KB
testcase_01 AC 38 ms
52,792 KB
testcase_02 AC 47 ms
60,912 KB
testcase_03 AC 47 ms
61,868 KB
testcase_04 AC 48 ms
61,188 KB
testcase_05 AC 46 ms
61,384 KB
testcase_06 AC 47 ms
61,000 KB
testcase_07 AC 46 ms
61,356 KB
testcase_08 AC 47 ms
61,372 KB
testcase_09 AC 47 ms
62,048 KB
testcase_10 AC 47 ms
61,160 KB
testcase_11 AC 46 ms
60,680 KB
testcase_12 AC 47 ms
60,628 KB
testcase_13 AC 46 ms
62,384 KB
testcase_14 AC 46 ms
61,832 KB
testcase_15 AC 46 ms
61,480 KB
testcase_16 AC 47 ms
61,148 KB
testcase_17 AC 47 ms
61,180 KB
testcase_18 AC 47 ms
61,172 KB
testcase_19 AC 47 ms
61,248 KB
testcase_20 AC 48 ms
61,860 KB
testcase_21 AC 47 ms
61,348 KB
testcase_22 AC 47 ms
62,148 KB
testcase_23 AC 47 ms
61,084 KB
testcase_24 AC 47 ms
60,728 KB
testcase_25 AC 48 ms
61,420 KB
testcase_26 AC 49 ms
61,328 KB
testcase_27 AC 47 ms
61,432 KB
testcase_28 AC 46 ms
62,252 KB
testcase_29 AC 46 ms
61,412 KB
testcase_30 AC 45 ms
61,488 KB
testcase_31 AC 47 ms
61,156 KB
testcase_32 AC 47 ms
61,048 KB
testcase_33 AC 46 ms
60,916 KB
testcase_34 AC 46 ms
61,640 KB
testcase_35 AC 46 ms
60,480 KB
testcase_36 AC 47 ms
60,636 KB
testcase_37 AC 47 ms
60,616 KB
testcase_38 AC 47 ms
61,380 KB
testcase_39 AC 47 ms
61,892 KB
testcase_40 AC 47 ms
62,196 KB
testcase_41 AC 46 ms
60,792 KB
testcase_42 AC 46 ms
61,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def powmod(n,pow,mod):
    val = 1
    while pow > 0:
        if pow & 1:
            val = (val * n) % mod
        pow = pow >> 1
        n = (n * n) % mod
    return val

def matdot(a,b,mod):
    matsize = len(a)
    val = [[0 for i in range(matsize)] for j in range(matsize)]
    for i in range(matsize):
        for j in range(matsize):
            for k in range(matsize):
                val[i][j] = (val[i][j] + a[i][k] * b[k][j]) % mod
    return val

def powmodmat(n,pow,mod):
    matsize = len(n)
    val = [[0 for i in range(matsize)] for j in range(matsize)]
    for i in range(matsize):
        val[i][i] = 1
    while pow > 0:
        if pow & 1:
            val = matdot(val, n, mod)
        pow = pow >> 1
        n = matdot(n, n, mod)
    return val

c, n, m = map(int, input().split())
p = 10**9+7
inv = powmod(c,p-2,p)
mat = [[inv,0,0,inv*(c-1)%p],[0,inv,inv,inv*(c-2)%p],[1,0,0,0],[0,1,0,0]]
kari = powmodmat(mat,n,p)
a = kari[0][0]
ans = (1 - powmod((1-a)%p,m,p)) % p
print("{}".format(ans))

0