結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 62 ms
66,888 KB
testcase_01 AC 929 ms
77,764 KB
testcase_02 AC 791 ms
77,520 KB
testcase_03 AC 792 ms
77,908 KB
testcase_04 AC 779 ms
77,788 KB
testcase_05 AC 784 ms
77,668 KB
testcase_06 AC 787 ms
77,684 KB
testcase_07 AC 793 ms
77,276 KB
testcase_08 AC 785 ms
77,484 KB
testcase_09 AC 767 ms
77,484 KB
testcase_10 AC 796 ms
77,204 KB
testcase_11 AC 775 ms
77,572 KB
testcase_12 AC 772 ms
77,728 KB
testcase_13 AC 800 ms
78,084 KB
testcase_14 AC 786 ms
77,972 KB
testcase_15 AC 766 ms
77,664 KB
testcase_16 AC 792 ms
77,532 KB
testcase_17 AC 798 ms
77,316 KB
testcase_18 AC 765 ms
77,188 KB
testcase_19 AC 784 ms
77,420 KB
testcase_20 AC 787 ms
77,420 KB
testcase_21 AC 786 ms
77,688 KB
testcase_22 AC 974 ms
77,716 KB
testcase_23 AC 944 ms
77,236 KB
testcase_24 AC 961 ms
77,508 KB
testcase_25 AC 953 ms
77,484 KB
testcase_26 AC 967 ms
77,252 KB
testcase_27 AC 968 ms
77,876 KB
testcase_28 AC 959 ms
77,364 KB
testcase_29 AC 957 ms
77,736 KB
testcase_30 AC 985 ms
77,624 KB
testcase_31 AC 952 ms
77,620 KB
testcase_32 AC 963 ms
77,548 KB
testcase_33 AC 951 ms
77,488 KB
testcase_34 AC 963 ms
77,364 KB
testcase_35 AC 952 ms
77,704 KB
testcase_36 AC 957 ms
77,360 KB
testcase_37 AC 960 ms
77,384 KB
testcase_38 AC 964 ms
77,612 KB
testcase_39 AC 984 ms
77,496 KB
testcase_40 AC 964 ms
77,912 KB
testcase_41 AC 963 ms
77,352 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(32):
        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