結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 61 ms
67,968 KB
testcase_01 AC 1,436 ms
77,312 KB
testcase_02 AC 1,309 ms
77,404 KB
testcase_03 AC 1,294 ms
77,696 KB
testcase_04 AC 1,328 ms
77,824 KB
testcase_05 AC 1,367 ms
77,824 KB
testcase_06 AC 1,374 ms
77,696 KB
testcase_07 AC 1,309 ms
77,824 KB
testcase_08 AC 1,324 ms
77,312 KB
testcase_09 AC 1,334 ms
77,440 KB
testcase_10 AC 1,293 ms
77,564 KB
testcase_11 AC 1,325 ms
77,696 KB
testcase_12 AC 1,302 ms
77,568 KB
testcase_13 AC 1,351 ms
77,292 KB
testcase_14 AC 1,306 ms
77,724 KB
testcase_15 AC 1,311 ms
77,824 KB
testcase_16 AC 1,297 ms
77,440 KB
testcase_17 AC 1,303 ms
77,696 KB
testcase_18 AC 1,319 ms
77,696 KB
testcase_19 AC 1,304 ms
78,056 KB
testcase_20 AC 1,295 ms
77,560 KB
testcase_21 AC 1,284 ms
77,824 KB
testcase_22 AC 1,453 ms
77,696 KB
testcase_23 AC 1,480 ms
78,756 KB
testcase_24 AC 1,487 ms
77,952 KB
testcase_25 AC 1,521 ms
78,208 KB
testcase_26 AC 1,469 ms
78,060 KB
testcase_27 AC 1,446 ms
78,848 KB
testcase_28 AC 1,453 ms
77,956 KB
testcase_29 AC 1,448 ms
77,568 KB
testcase_30 AC 1,455 ms
77,464 KB
testcase_31 AC 1,452 ms
77,560 KB
testcase_32 AC 1,440 ms
77,952 KB
testcase_33 AC 1,448 ms
77,812 KB
testcase_34 AC 1,502 ms
78,080 KB
testcase_35 AC 1,455 ms
77,368 KB
testcase_36 AC 1,471 ms
78,136 KB
testcase_37 AC 1,446 ms
77,696 KB
testcase_38 AC 1,468 ms
77,696 KB
testcase_39 AC 1,465 ms
78,080 KB
testcase_40 AC 1,442 ms
77,824 KB
testcase_41 AC 1,448 ms
78,712 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 = [[inv, 0, 0, inv, 0, inv], 
     [1, 0, 0, 0, 0, 0],
     [0, inv, inv, 0,  0, inv], 
     [0, 0, 1, 0, 0, 0],
     [0, inv, 0, inv, inv, 0], 
     [0, 0, 0, 0, 1, 0],]
for _ in range(T):
    N = int(readline())
    A = Matpow(M, N, mod)
    print(A[0][0])
0