結果

問題 No.1704 Many Bus Stops (easy)
ユーザー sasa8uyauyasasa8uyauya
提出日時 2024-08-08 20:57:14
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 562 ms / 2,000 ms
コード長 594 bytes
コンパイル時間 337 ms
コンパイル使用メモリ 82,128 KB
実行使用メモリ 77,984 KB
最終ジャッジ日時 2024-08-08 20:57:37
合計ジャッジ時間 22,053 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 53 ms
63,744 KB
testcase_01 AC 498 ms
77,180 KB
testcase_02 AC 454 ms
77,696 KB
testcase_03 AC 439 ms
77,184 KB
testcase_04 AC 437 ms
77,440 KB
testcase_05 AC 462 ms
77,056 KB
testcase_06 AC 424 ms
77,056 KB
testcase_07 AC 429 ms
77,696 KB
testcase_08 AC 447 ms
77,056 KB
testcase_09 AC 422 ms
76,988 KB
testcase_10 AC 426 ms
77,300 KB
testcase_11 AC 463 ms
77,440 KB
testcase_12 AC 430 ms
77,332 KB
testcase_13 AC 414 ms
77,296 KB
testcase_14 AC 456 ms
77,044 KB
testcase_15 AC 427 ms
77,392 KB
testcase_16 AC 483 ms
77,984 KB
testcase_17 AC 441 ms
76,968 KB
testcase_18 AC 419 ms
76,924 KB
testcase_19 AC 448 ms
77,268 KB
testcase_20 AC 433 ms
77,124 KB
testcase_21 AC 421 ms
77,916 KB
testcase_22 AC 540 ms
76,816 KB
testcase_23 AC 490 ms
76,928 KB
testcase_24 AC 539 ms
76,800 KB
testcase_25 AC 497 ms
77,204 KB
testcase_26 AC 503 ms
77,184 KB
testcase_27 AC 524 ms
77,312 KB
testcase_28 AC 495 ms
76,896 KB
testcase_29 AC 538 ms
76,808 KB
testcase_30 AC 494 ms
76,896 KB
testcase_31 AC 492 ms
77,012 KB
testcase_32 AC 562 ms
77,036 KB
testcase_33 AC 499 ms
77,000 KB
testcase_34 AC 525 ms
76,928 KB
testcase_35 AC 529 ms
77,140 KB
testcase_36 AC 508 ms
76,808 KB
testcase_37 AC 536 ms
77,272 KB
testcase_38 AC 504 ms
77,312 KB
testcase_39 AC 522 ms
77,016 KB
testcase_40 AC 502 ms
77,156 KB
testcase_41 AC 510 ms
76,800 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

T=int(input())
M=10**9+7
x=pow(3,M-2,M)
l=6

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

for _ in range(T):
  A=[
    [x,0,0,0,x,x],
    [0,x,0,x,0,x],
    [0,0,x,x,x,0],
    [1,0,0,0,0,0],
    [0,1,0,0,0,0],
    [0,0,1,0,0,0]
  ]
  B=[
    [1,0,0,0,0,0],
    [0,1,0,0,0,0],
    [0,0,1,0,0,0],
    [0,0,0,1,0,0],
    [0,0,0,0,1,0],
    [0,0,0,0,0,1]
  ]
  t=int(input())
  for i in range(30):
    if (t>>i)&1:
      B=seki(A,B)
    A=seki(A,A)
  print(B[0][0])
0