結果

問題 No.1704 Many Bus Stops (easy)
ユーザー brthyyjpbrthyyjp
提出日時 2021-10-12 09:43:48
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,055 ms / 2,000 ms
コード長 927 bytes
コンパイル時間 352 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 77,760 KB
最終ジャッジ日時 2024-09-16 17:49:14
合計ジャッジ時間 27,657 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 56 ms
60,928 KB
testcase_01 AC 1,055 ms
77,492 KB
testcase_02 AC 339 ms
77,184 KB
testcase_03 AC 337 ms
77,440 KB
testcase_04 AC 339 ms
77,176 KB
testcase_05 AC 344 ms
77,568 KB
testcase_06 AC 351 ms
77,284 KB
testcase_07 AC 339 ms
77,440 KB
testcase_08 AC 341 ms
77,568 KB
testcase_09 AC 337 ms
77,160 KB
testcase_10 AC 338 ms
77,760 KB
testcase_11 AC 335 ms
77,440 KB
testcase_12 AC 340 ms
77,360 KB
testcase_13 AC 329 ms
76,776 KB
testcase_14 AC 338 ms
77,320 KB
testcase_15 AC 361 ms
77,440 KB
testcase_16 AC 343 ms
77,336 KB
testcase_17 AC 343 ms
76,900 KB
testcase_18 AC 335 ms
77,048 KB
testcase_19 AC 348 ms
77,312 KB
testcase_20 AC 353 ms
77,356 KB
testcase_21 AC 341 ms
77,388 KB
testcase_22 AC 828 ms
77,436 KB
testcase_23 AC 821 ms
77,696 KB
testcase_24 AC 811 ms
77,188 KB
testcase_25 AC 822 ms
77,584 KB
testcase_26 AC 867 ms
77,688 KB
testcase_27 AC 830 ms
77,312 KB
testcase_28 AC 807 ms
77,296 KB
testcase_29 AC 829 ms
77,184 KB
testcase_30 AC 842 ms
77,304 KB
testcase_31 AC 875 ms
77,408 KB
testcase_32 AC 884 ms
77,196 KB
testcase_33 AC 887 ms
77,196 KB
testcase_34 AC 866 ms
77,304 KB
testcase_35 AC 813 ms
77,340 KB
testcase_36 AC 856 ms
77,100 KB
testcase_37 AC 854 ms
77,184 KB
testcase_38 AC 872 ms
77,544 KB
testcase_39 AC 862 ms
77,600 KB
testcase_40 AC 830 ms
77,440 KB
testcase_41 AC 837 ms
77,176 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
import io, os
input = io.BytesIO(os.read(0,os.fstat(0).st_size)).readline

# A*B
def mat_mul(A, B, mod):
    C = [[0]*len(B[0]) for i 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

#A**n
def mat_pow(A, n, mod):
    B = [[0]*len(A) for i in range(len(A))]
    for i in range(len(A)):
        B[i][i] = 1
    while n > 0:
        if n & 1 == 1:
            B = mat_mul(A, B, mod)
        A = mat_mul(A, A, mod)
        n = n>>1
    return B

mod = 10**9+7
p = pow(3, mod-2, mod)
A = [[p,0,0,0,p,p],[0,p,0,p,0,p],[0,0,p,p,p,0],[1,0,0,0,0,0],[0,1,0,0,0,0],[0,0,1,0,0,0]]
X = [p, 0, 0, 1, 0, 0]

t = int(input())
for _ in range(t):
    n = int(input())
    M = mat_pow(A, n-1, mod)
    ans = 0
    for j in range(6):
        ans += M[0][j]*X[j]
        ans %= mod
    print(ans)
0