結果

問題 No.1704 Many Bus Stops (easy)
ユーザー Kiri8128Kiri8128
提出日時 2021-10-08 22:54:15
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 578 ms / 2,000 ms
コード長 728 bytes
コンパイル時間 414 ms
コンパイル使用メモリ 82,184 KB
実行使用メモリ 79,336 KB
最終ジャッジ日時 2024-07-23 06:05:38
合計ジャッジ時間 17,843 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 48 ms
62,512 KB
testcase_01 AC 522 ms
78,812 KB
testcase_02 AC 229 ms
77,180 KB
testcase_03 AC 233 ms
77,384 KB
testcase_04 AC 233 ms
77,176 KB
testcase_05 AC 315 ms
78,940 KB
testcase_06 AC 275 ms
77,700 KB
testcase_07 AC 237 ms
77,956 KB
testcase_08 AC 230 ms
77,520 KB
testcase_09 AC 233 ms
77,612 KB
testcase_10 AC 229 ms
77,452 KB
testcase_11 AC 241 ms
77,364 KB
testcase_12 AC 277 ms
77,416 KB
testcase_13 AC 233 ms
77,456 KB
testcase_14 AC 232 ms
77,564 KB
testcase_15 AC 237 ms
77,060 KB
testcase_16 AC 237 ms
77,600 KB
testcase_17 AC 243 ms
77,572 KB
testcase_18 AC 278 ms
77,900 KB
testcase_19 AC 232 ms
77,292 KB
testcase_20 AC 251 ms
77,408 KB
testcase_21 AC 234 ms
77,280 KB
testcase_22 AC 529 ms
78,152 KB
testcase_23 AC 524 ms
78,472 KB
testcase_24 AC 532 ms
78,196 KB
testcase_25 AC 524 ms
77,772 KB
testcase_26 AC 528 ms
78,428 KB
testcase_27 AC 540 ms
77,912 KB
testcase_28 AC 578 ms
78,848 KB
testcase_29 AC 534 ms
78,168 KB
testcase_30 AC 528 ms
78,280 KB
testcase_31 AC 559 ms
79,336 KB
testcase_32 AC 528 ms
77,996 KB
testcase_33 AC 536 ms
77,932 KB
testcase_34 AC 525 ms
78,156 KB
testcase_35 AC 530 ms
78,056 KB
testcase_36 AC 528 ms
77,856 KB
testcase_37 AC 531 ms
78,172 KB
testcase_38 AC 559 ms
78,480 KB
testcase_39 AC 529 ms
78,084 KB
testcase_40 AC 525 ms
78,380 KB
testcase_41 AC 528 ms
78,136 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def mmult(A, B):
    global mod
    n, m, l = len(A), len(B), len(B[0])
    ret = [[0] * l for _ in range(n)]
    for i in range(n):
        for j in range(m):
            for k in range(l):
                ret[i][k] = (ret[i][k] + A[i][j] * B[j][k]) % mod
    return ret
def mpow(A, n):
    if n == 1: return A
    if n == 0: return [[1 if i == j else 0 for j in range(len(A))] for i in range(len(A))]
    return mmult(mpow(A, n - 1), A) if n % 2 else mpow(mmult(A, A), n // 2)

mod = 10 ** 9 + 7
i3 = (mod + 1) // 3
X = [[i3, 0, 0, 0, i3, i3], [0, i3, 0, i3, 0, i3], [0, 0, i3, i3, i3, 0], [1, 0, 0, 0, 0, 0], [0, 1, 0, 0, 0, 0], [0, 0, 1, 0, 0, 0]]

T = int(input())
for _ in range(T):
    print(mpow(X, int(input()))[0][0])
0