結果

問題 No.1704 Many Bus Stops (easy)
ユーザー H3PO4H3PO4
提出日時 2021-10-08 23:04:44
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,850 ms / 2,000 ms
コード長 925 bytes
コンパイル時間 191 ms
コンパイル使用メモリ 82,436 KB
実行使用メモリ 90,240 KB
最終ジャッジ日時 2024-07-23 06:29:36
合計ジャッジ時間 45,762 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 64 ms
68,256 KB
testcase_01 AC 1,697 ms
87,728 KB
testcase_02 AC 616 ms
78,720 KB
testcase_03 AC 619 ms
78,592 KB
testcase_04 AC 626 ms
78,928 KB
testcase_05 AC 625 ms
78,848 KB
testcase_06 AC 615 ms
78,604 KB
testcase_07 AC 630 ms
78,848 KB
testcase_08 AC 608 ms
78,736 KB
testcase_09 AC 623 ms
78,116 KB
testcase_10 AC 634 ms
79,360 KB
testcase_11 AC 629 ms
78,592 KB
testcase_12 AC 621 ms
78,336 KB
testcase_13 AC 613 ms
78,464 KB
testcase_14 AC 628 ms
78,592 KB
testcase_15 AC 606 ms
78,588 KB
testcase_16 AC 606 ms
78,336 KB
testcase_17 AC 611 ms
79,184 KB
testcase_18 AC 646 ms
78,080 KB
testcase_19 AC 601 ms
78,836 KB
testcase_20 AC 591 ms
78,592 KB
testcase_21 AC 627 ms
78,592 KB
testcase_22 AC 1,735 ms
88,760 KB
testcase_23 AC 1,750 ms
89,088 KB
testcase_24 AC 1,744 ms
89,540 KB
testcase_25 AC 1,729 ms
88,696 KB
testcase_26 AC 1,730 ms
88,748 KB
testcase_27 AC 1,742 ms
88,940 KB
testcase_28 AC 1,767 ms
89,600 KB
testcase_29 AC 1,782 ms
88,704 KB
testcase_30 AC 1,798 ms
89,728 KB
testcase_31 AC 1,773 ms
89,172 KB
testcase_32 AC 1,757 ms
88,704 KB
testcase_33 AC 1,772 ms
89,344 KB
testcase_34 AC 1,765 ms
90,240 KB
testcase_35 AC 1,768 ms
88,960 KB
testcase_36 AC 1,717 ms
88,196 KB
testcase_37 AC 1,850 ms
88,356 KB
testcase_38 AC 1,830 ms
88,616 KB
testcase_39 AC 1,831 ms
88,328 KB
testcase_40 AC 1,843 ms
88,724 KB
testcase_41 AC 1,823 ms
88,860 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

MOD = 10 ** 9 + 7
i3 = pow(3, -1, MOD)

"""pypy用行列累乗ライブラリは https://github.com/fujihiraryo/alogorithm-python/blob/master/integer/matrix.py から拝借しています。"""


def product(a, b, p=MOD):
    n = len(a)
    c = [[0] * n for i in range(n)]
    for i in range(n):
        for j in range(n):
            c[i][j] = sum([a[i][k] * b[k][j] for k in range(n)]) % p
    return c


def matpow(a, k, p=10 ** 9 + 7):
    if k == 1:
        return a
    if k % 2 == 0:
        b = matpow(a, k // 2)
        return product(b, b, p=p)
    return product(a, matpow(a, k - 1), p=p)


def solve(N):
    x = [1, 0, 0, 0, 0, 0]
    A = [[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]]
    return matpow(A, N)[0][0]


T = int(input())
for _ in range(T):
    print(solve(int(input())))
0