結果

問題 No.1704 Many Bus Stops (easy)
ユーザー tassei903tassei903
提出日時 2021-10-08 22:56:15
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 616 ms / 2,000 ms
コード長 1,183 bytes
コンパイル時間 167 ms
コンパイル使用メモリ 82,408 KB
実行使用メモリ 78,848 KB
最終ジャッジ日時 2024-07-23 06:09:33
合計ジャッジ時間 18,516 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 51 ms
60,928 KB
testcase_01 AC 616 ms
77,196 KB
testcase_02 AC 269 ms
77,440 KB
testcase_03 AC 263 ms
77,608 KB
testcase_04 AC 266 ms
77,440 KB
testcase_05 AC 262 ms
77,440 KB
testcase_06 AC 262 ms
77,712 KB
testcase_07 AC 264 ms
77,440 KB
testcase_08 AC 267 ms
77,440 KB
testcase_09 AC 266 ms
77,572 KB
testcase_10 AC 264 ms
77,184 KB
testcase_11 AC 262 ms
77,440 KB
testcase_12 AC 269 ms
78,848 KB
testcase_13 AC 265 ms
77,476 KB
testcase_14 AC 264 ms
77,524 KB
testcase_15 AC 266 ms
78,208 KB
testcase_16 AC 265 ms
77,568 KB
testcase_17 AC 266 ms
77,696 KB
testcase_18 AC 264 ms
77,312 KB
testcase_19 AC 267 ms
77,972 KB
testcase_20 AC 266 ms
77,824 KB
testcase_21 AC 264 ms
77,312 KB
testcase_22 AC 547 ms
77,824 KB
testcase_23 AC 558 ms
77,368 KB
testcase_24 AC 553 ms
77,816 KB
testcase_25 AC 553 ms
77,412 KB
testcase_26 AC 553 ms
77,568 KB
testcase_27 AC 555 ms
78,328 KB
testcase_28 AC 558 ms
78,592 KB
testcase_29 AC 556 ms
78,720 KB
testcase_30 AC 550 ms
78,024 KB
testcase_31 AC 558 ms
78,464 KB
testcase_32 AC 551 ms
77,952 KB
testcase_33 AC 557 ms
78,556 KB
testcase_34 AC 554 ms
78,080 KB
testcase_35 AC 554 ms
78,600 KB
testcase_36 AC 548 ms
77,696 KB
testcase_37 AC 549 ms
78,704 KB
testcase_38 AC 550 ms
78,088 KB
testcase_39 AC 558 ms
78,620 KB
testcase_40 AC 547 ms
77,440 KB
testcase_41 AC 553 ms
78,128 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = lambda :sys.stdin.readline()[:-1]
ni = lambda :int(input())
na = lambda :list(map(int,input().split()))
sys.setrecursionlimit(10**7)
yes = lambda :print("yes");Yes = lambda :print("Yes");YES = lambda : print("YES")
no = lambda :print("no");No = lambda :print("No");NO = lambda : print("NO")
#######################################################################



#a*bの計算
def mat_mul(a,b):
    n,m,l=len(a),len(b[0]),len(b)
    c=[[0]*m for _ in range(n)]
    for i in range(n):
        for k in range(l):
            for  j in range(m):
                c[i][j]=(c[i][j]+a[i][k]*b[k][j])%mod
    return c
 
#a^nの計算
def mat_pow(a,n):
    m=len(a)
    b=[[0]*m for _ in range(m)]
    for i in range(m):
        b[i][i]=1
    while n>0:
        if n&1:
            b=mat_mul(b,a)
        a=mat_mul(a,a)
        n>>=1
    return b



t = ni()
p = mod = 10**9+7
z = pow(3,p-2,p)
s = list(zip([z,0,0,1,0,0]))
b = [[z,0,0,0,z,z],
     [0,z,0,z,0,z],
     [0,0,z,z,z,0],
     [1,0,0,0,0,0],
     [0,1,0,0,0,0],
     [0,0,1,0,0,0]]

for n in [ni() for i in range(t)]:
    if n==1:
        print(z)
    else:
        print(mat_mul(mat_pow(b,n-1),s)[0][0]%mod)
0