結果

問題 No.1704 Many Bus Stops (easy)
ユーザー tamatotamato
提出日時 2021-10-08 22:27:59
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 560 ms / 2,000 ms
コード長 1,166 bytes
コンパイル時間 308 ms
コンパイル使用メモリ 82,652 KB
実行使用メモリ 78,196 KB
最終ジャッジ日時 2024-07-23 05:07:47
合計ジャッジ時間 18,315 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 45 ms
62,536 KB
testcase_01 AC 549 ms
77,888 KB
testcase_02 AC 253 ms
77,204 KB
testcase_03 AC 254 ms
77,624 KB
testcase_04 AC 255 ms
77,320 KB
testcase_05 AC 256 ms
77,204 KB
testcase_06 AC 256 ms
77,840 KB
testcase_07 AC 258 ms
77,840 KB
testcase_08 AC 256 ms
77,516 KB
testcase_09 AC 261 ms
77,464 KB
testcase_10 AC 256 ms
77,596 KB
testcase_11 AC 261 ms
77,328 KB
testcase_12 AC 256 ms
77,892 KB
testcase_13 AC 255 ms
77,456 KB
testcase_14 AC 255 ms
77,460 KB
testcase_15 AC 258 ms
77,868 KB
testcase_16 AC 257 ms
77,380 KB
testcase_17 AC 258 ms
77,400 KB
testcase_18 AC 256 ms
77,656 KB
testcase_19 AC 258 ms
77,720 KB
testcase_20 AC 253 ms
77,332 KB
testcase_21 AC 257 ms
77,200 KB
testcase_22 AC 552 ms
77,536 KB
testcase_23 AC 551 ms
77,928 KB
testcase_24 AC 558 ms
77,672 KB
testcase_25 AC 559 ms
77,404 KB
testcase_26 AC 552 ms
77,668 KB
testcase_27 AC 556 ms
77,592 KB
testcase_28 AC 549 ms
78,196 KB
testcase_29 AC 552 ms
77,664 KB
testcase_30 AC 551 ms
77,920 KB
testcase_31 AC 556 ms
77,540 KB
testcase_32 AC 550 ms
77,800 KB
testcase_33 AC 552 ms
77,924 KB
testcase_34 AC 554 ms
77,544 KB
testcase_35 AC 556 ms
77,792 KB
testcase_36 AC 560 ms
77,928 KB
testcase_37 AC 549 ms
77,924 KB
testcase_38 AC 556 ms
77,680 KB
testcase_39 AC 551 ms
77,532 KB
testcase_40 AC 555 ms
77,664 KB
testcase_41 AC 554 ms
77,668 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

mod = 1000000007
eps = 10**-9


def main():
    import sys
    input = sys.stdin.readline

    def matmul(A, B):
        C = [[0] * len(B[0]) for _ in range(len(A))]
        for i in range(len(A)):
            for k in range(len(B)):
                for j in range(len(B[0])):
                    C[i][j] = (C[i][j] + A[i][k] * B[k][j]) % mod
        return C

    def matpow(A, p):
        n = len(A)
        B = [[0] * n for _ in range(n)]
        for i in range(n):
            B[i][i] = 1
        while p > 0:
            if p & 1:
                B = matmul(B, A)
            A = matmul(A, A)
            p >>= 1
        return B

    inv3 = pow(3, mod-2, mod)
    mat = [[0] * 6 for _ in range(6)]
    mat[0][0] = inv3
    mat[0][4] = inv3
    mat[0][5] = inv3
    mat[1][1] = inv3
    mat[1][3] = inv3
    mat[1][5] = inv3
    mat[2][2] = inv3
    mat[2][3] = inv3
    mat[2][4] = inv3
    mat[3][0] = 1
    mat[4][1] = 1
    mat[5][2] = 1
    vec = [[0] for _ in range(6)]
    vec[0][0] = 1

    for _ in range(int(input())):
        N = int(input())
        ans = matmul(matpow(mat, N), vec)
        print(ans[0][0])


if __name__ == '__main__':
    main()
0