結果

問題 No.1704 Many Bus Stops (easy)
ユーザー titiatitia
提出日時 2021-10-09 05:33:04
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 165 ms / 2,000 ms
コード長 1,042 bytes
コンパイル時間 295 ms
コンパイル使用メモリ 82,920 KB
実行使用メモリ 77,804 KB
最終ジャッジ日時 2024-07-23 16:08:44
合計ジャッジ時間 7,497 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 48 ms
62,396 KB
testcase_01 AC 128 ms
76,624 KB
testcase_02 AC 133 ms
77,416 KB
testcase_03 AC 122 ms
77,720 KB
testcase_04 AC 124 ms
77,296 KB
testcase_05 AC 122 ms
77,580 KB
testcase_06 AC 128 ms
77,292 KB
testcase_07 AC 129 ms
77,240 KB
testcase_08 AC 132 ms
77,180 KB
testcase_09 AC 130 ms
77,412 KB
testcase_10 AC 128 ms
77,504 KB
testcase_11 AC 129 ms
77,804 KB
testcase_12 AC 127 ms
77,696 KB
testcase_13 AC 121 ms
77,156 KB
testcase_14 AC 129 ms
77,428 KB
testcase_15 AC 130 ms
77,660 KB
testcase_16 AC 127 ms
77,184 KB
testcase_17 AC 129 ms
77,392 KB
testcase_18 AC 130 ms
77,160 KB
testcase_19 AC 127 ms
77,452 KB
testcase_20 AC 119 ms
77,488 KB
testcase_21 AC 133 ms
77,176 KB
testcase_22 AC 148 ms
76,816 KB
testcase_23 AC 146 ms
77,192 KB
testcase_24 AC 145 ms
76,944 KB
testcase_25 AC 144 ms
76,812 KB
testcase_26 AC 165 ms
77,076 KB
testcase_27 AC 147 ms
77,072 KB
testcase_28 AC 144 ms
77,052 KB
testcase_29 AC 144 ms
77,200 KB
testcase_30 AC 144 ms
77,164 KB
testcase_31 AC 145 ms
76,808 KB
testcase_32 AC 143 ms
76,684 KB
testcase_33 AC 146 ms
77,188 KB
testcase_34 AC 164 ms
76,812 KB
testcase_35 AC 146 ms
76,948 KB
testcase_36 AC 144 ms
76,940 KB
testcase_37 AC 145 ms
77,068 KB
testcase_38 AC 155 ms
76,876 KB
testcase_39 AC 148 ms
76,944 KB
testcase_40 AC 141 ms
76,684 KB
testcase_41 AC 145 ms
76,608 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

mod=10**9+7

# 行列の計算(numpyを使えないとき,modを使用)
def prod(A,B,k,l,m):# A:k*l,B:l*m
    C=[[None for i in range(m)] for j in range(k)]

    for i in range(k):
        for j in range(m):
            ANS=0
            for pl in range(l):
                ANS=(ANS+A[i][pl]*B[pl][j])%mod

            C[i][j]=ANS

    return C

def plus(A,B,k,l):# a,B:k*l
    C=[[None for i in range(l)] for j in range(k)]

    for i in range(k):
        for j in range(l):
            C[i][j]=(A[i][j]+B[i][j])%mod

    return C

INV=pow(3,mod-2,mod)

A=[[0]*6 for i in range(6)]
A[0][0]=INV
A[0][4]=INV
A[0][5]=INV

A[1][1]=INV
A[1][3]=INV
A[1][5]=INV

A[2][2]=INV
A[2][3]=INV
A[2][4]=INV

A[3][0]=1
A[4][1]=1
A[5][2]=1

POWA=[A]
for i in range(60):
    POWA.append(prod(POWA[-1],POWA[-1],6,6,6)) # ベキを求めて

T=int(input())
for tests in range(T):
    n=int(input())

    X=[[1,0,0,0,0,0]]

    while n:
        X=prod(X,POWA[n.bit_length()-1],1,6,6) # n乗の場合
        n-=1<<(n.bit_length()-1)

    print(X[0][0])
    
0