結果

問題 No.1706 Many Bus Stops (hard)
ユーザー sasa8uyauyasasa8uyauya
提出日時 2024-08-08 21:23:10
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 51 ms / 2,000 ms
コード長 464 bytes
コンパイル時間 256 ms
コンパイル使用メモリ 82,492 KB
実行使用メモリ 60,416 KB
最終ジャッジ日時 2024-08-08 21:23:14
合計ジャッジ時間 3,921 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 45 ms
59,648 KB
testcase_01 AC 45 ms
60,032 KB
testcase_02 AC 45 ms
60,032 KB
testcase_03 AC 45 ms
60,160 KB
testcase_04 AC 46 ms
60,160 KB
testcase_05 AC 45 ms
59,904 KB
testcase_06 AC 45 ms
60,416 KB
testcase_07 AC 47 ms
60,032 KB
testcase_08 AC 46 ms
60,160 KB
testcase_09 AC 45 ms
59,904 KB
testcase_10 AC 46 ms
60,160 KB
testcase_11 AC 45 ms
60,160 KB
testcase_12 AC 45 ms
60,160 KB
testcase_13 AC 45 ms
60,288 KB
testcase_14 AC 45 ms
59,776 KB
testcase_15 AC 45 ms
60,160 KB
testcase_16 AC 45 ms
60,288 KB
testcase_17 AC 45 ms
60,032 KB
testcase_18 AC 46 ms
60,416 KB
testcase_19 AC 45 ms
59,904 KB
testcase_20 AC 51 ms
60,032 KB
testcase_21 AC 48 ms
60,032 KB
testcase_22 AC 45 ms
60,032 KB
testcase_23 AC 45 ms
60,160 KB
testcase_24 AC 45 ms
60,416 KB
testcase_25 AC 44 ms
60,160 KB
testcase_26 AC 44 ms
60,416 KB
testcase_27 AC 45 ms
60,160 KB
testcase_28 AC 45 ms
60,416 KB
testcase_29 AC 44 ms
60,288 KB
testcase_30 AC 44 ms
60,160 KB
testcase_31 AC 44 ms
60,416 KB
testcase_32 AC 45 ms
60,032 KB
testcase_33 AC 45 ms
60,032 KB
testcase_34 AC 45 ms
60,160 KB
testcase_35 AC 45 ms
59,904 KB
testcase_36 AC 46 ms
59,904 KB
testcase_37 AC 46 ms
60,160 KB
testcase_38 AC 46 ms
60,032 KB
testcase_39 AC 45 ms
60,416 KB
testcase_40 AC 44 ms
60,160 KB
testcase_41 AC 46 ms
60,032 KB
testcase_42 AC 45 ms
60,032 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

c,t,m=map(int,input().split())
M=10**9+7
x=pow(c,M-2,M)
l=4

def seki(a,b):
  c=[[0]*l for i in range(l)]
  for i in range(l):
    for j in range(l):
      for k in range(l):
        c[i][j]+=a[i][k]*b[k][j]
        c[i][j]%=M
  return c

A=[
  [x,0,0,x],
  [0,x,(c-1)*x,(c-2)*x],
  [1,0,0,0],
  [0,1,0,0],
]
B=[
  [1,0,0,0],
  [0,1,0,0],
  [0,0,1,0],
  [0,0,0,1],
]

for i in range(30):
  if (t>>i)&1:
    B=seki(A,B)
  A=seki(A,A)
print((1-pow(1-B[0][0],m,M))%M)
0