結果

問題 No.1704 Many Bus Stops (easy)
ユーザー tktk_snsntktk_snsn
提出日時 2021-10-08 22:59:34
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,576 ms / 2,000 ms
コード長 816 bytes
コンパイル時間 192 ms
コンパイル使用メモリ 82,200 KB
実行使用メモリ 78,520 KB
最終ジャッジ日時 2024-07-23 06:21:57
合計ジャッジ時間 44,929 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 62 ms
66,544 KB
testcase_01 AC 1,462 ms
77,932 KB
testcase_02 AC 586 ms
78,372 KB
testcase_03 AC 566 ms
77,664 KB
testcase_04 AC 572 ms
77,324 KB
testcase_05 AC 577 ms
77,196 KB
testcase_06 AC 572 ms
77,664 KB
testcase_07 AC 583 ms
77,520 KB
testcase_08 AC 576 ms
77,540 KB
testcase_09 AC 571 ms
77,464 KB
testcase_10 AC 581 ms
78,444 KB
testcase_11 AC 567 ms
77,940 KB
testcase_12 AC 575 ms
77,464 KB
testcase_13 AC 579 ms
77,628 KB
testcase_14 AC 579 ms
77,364 KB
testcase_15 AC 573 ms
77,692 KB
testcase_16 AC 570 ms
77,904 KB
testcase_17 AC 579 ms
78,008 KB
testcase_18 AC 572 ms
77,548 KB
testcase_19 AC 575 ms
77,528 KB
testcase_20 AC 566 ms
77,380 KB
testcase_21 AC 567 ms
77,520 KB
testcase_22 AC 1,478 ms
78,188 KB
testcase_23 AC 1,477 ms
78,520 KB
testcase_24 AC 1,486 ms
78,036 KB
testcase_25 AC 1,481 ms
78,024 KB
testcase_26 AC 1,498 ms
77,920 KB
testcase_27 AC 1,576 ms
77,920 KB
testcase_28 AC 1,488 ms
78,248 KB
testcase_29 AC 1,482 ms
77,916 KB
testcase_30 AC 1,499 ms
77,980 KB
testcase_31 AC 1,496 ms
78,256 KB
testcase_32 AC 1,522 ms
78,116 KB
testcase_33 AC 1,494 ms
77,976 KB
testcase_34 AC 1,477 ms
78,168 KB
testcase_35 AC 1,497 ms
78,036 KB
testcase_36 AC 1,491 ms
78,100 KB
testcase_37 AC 1,491 ms
77,968 KB
testcase_38 AC 1,505 ms
78,036 KB
testcase_39 AC 1,498 ms
77,780 KB
testcase_40 AC 1,489 ms
78,024 KB
testcase_41 AC 1,497 ms
78,012 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

mod = 10 ** 9 + 7
P = 333333336


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


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


A = [[0] * 9 for _ in range(9)]
for i in range(0, 9, 3):
    A[i][i] = P
    A[i+1][i] = P
    A[i+2][i] = P

    A[(i+3) % 9][i+1] = 1
    A[(i+6) % 9][i+2] = 1

T = int(input())
for _ in range(T):
    N = int(input())
    B = mat_pow(A, N)
    print(B[0][0])
0