結果

問題 No.1704 Many Bus Stops (easy)
ユーザー rlangevinrlangevin
提出日時 2023-02-05 11:03:03
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,549 ms / 2,000 ms
コード長 901 bytes
コンパイル時間 171 ms
コンパイル使用メモリ 82,340 KB
実行使用メモリ 78,976 KB
最終ジャッジ日時 2024-07-04 01:55:25
合計ジャッジ時間 59,122 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 66 ms
67,968 KB
testcase_01 AC 1,444 ms
77,312 KB
testcase_02 AC 1,346 ms
77,312 KB
testcase_03 AC 1,311 ms
78,080 KB
testcase_04 AC 1,328 ms
77,764 KB
testcase_05 AC 1,325 ms
77,824 KB
testcase_06 AC 1,279 ms
77,696 KB
testcase_07 AC 1,287 ms
77,852 KB
testcase_08 AC 1,325 ms
77,392 KB
testcase_09 AC 1,295 ms
77,696 KB
testcase_10 AC 1,317 ms
77,860 KB
testcase_11 AC 1,284 ms
77,936 KB
testcase_12 AC 1,296 ms
77,440 KB
testcase_13 AC 1,303 ms
77,372 KB
testcase_14 AC 1,290 ms
77,696 KB
testcase_15 AC 1,308 ms
78,424 KB
testcase_16 AC 1,310 ms
77,440 KB
testcase_17 AC 1,303 ms
77,952 KB
testcase_18 AC 1,308 ms
77,568 KB
testcase_19 AC 1,328 ms
77,696 KB
testcase_20 AC 1,269 ms
77,440 KB
testcase_21 AC 1,282 ms
77,564 KB
testcase_22 AC 1,462 ms
78,608 KB
testcase_23 AC 1,473 ms
78,780 KB
testcase_24 AC 1,456 ms
78,392 KB
testcase_25 AC 1,461 ms
78,336 KB
testcase_26 AC 1,547 ms
78,268 KB
testcase_27 AC 1,481 ms
78,976 KB
testcase_28 AC 1,472 ms
77,952 KB
testcase_29 AC 1,463 ms
78,464 KB
testcase_30 AC 1,454 ms
78,208 KB
testcase_31 AC 1,457 ms
77,632 KB
testcase_32 AC 1,447 ms
77,664 KB
testcase_33 AC 1,458 ms
78,208 KB
testcase_34 AC 1,474 ms
78,208 KB
testcase_35 AC 1,471 ms
77,832 KB
testcase_36 AC 1,509 ms
78,208 KB
testcase_37 AC 1,473 ms
78,040 KB
testcase_38 AC 1,458 ms
77,696 KB
testcase_39 AC 1,503 ms
78,208 KB
testcase_40 AC 1,549 ms
77,952 KB
testcase_41 AC 1,458 ms
78,900 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
readline = sys.stdin.readline

def Matprod(A, B, mod):
    N = len(A)
    temp = [[0] * N for i in range(N)]
    for i in range(N):
        for j in range(N):
            for k in range(N):
                temp[i][j] += A[i][k] * B[k][j]
                temp[i][j] %= mod
    return temp

def Matpow(A, M, mod):
    N = len(A)
    Mat = [[0] * N for i in range(N)]
    for i in range(N):
        Mat[i][i] = 1
         
    for i in range(64):
        if (M >> i) & 1:
            Mat = Matprod(Mat, A, mod)
        A = Matprod(A, A, mod)
    return Mat  


T = int(readline())
mod = 10 ** 9 + 7
inv = pow(3, mod - 2, mod)
M = [[1, 0, 0, 1, 0, 1], 
     [3, 0, 0, 0, 0, 0],
     [0, 1, 1, 0,  0, 1], 
     [0, 0, 3, 0, 0, 0],
     [0, 1, 0, 1, 1, 0], 
     [0, 0, 0, 0, 3, 0],]
for _ in range(T):
    N = int(readline())
    A = Matpow(M, N, mod)
    print(A[0][0] * pow(inv, N, mod) % mod)
0