結果

問題 No.533 Mysterious Stairs
ユーザー 👑 rin204rin204
提出日時 2022-03-26 14:58:15
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 60 ms / 5,000 ms
コード長 993 bytes
コンパイル時間 267 ms
コンパイル使用メモリ 82,532 KB
実行使用メモリ 64,768 KB
最終ジャッジ日時 2024-10-15 06:44:23
合計ジャッジ時間 2,730 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
53,504 KB
testcase_01 AC 43 ms
54,272 KB
testcase_02 AC 46 ms
59,776 KB
testcase_03 AC 47 ms
60,032 KB
testcase_04 AC 47 ms
59,904 KB
testcase_05 AC 49 ms
61,312 KB
testcase_06 AC 50 ms
61,440 KB
testcase_07 AC 50 ms
61,440 KB
testcase_08 AC 50 ms
61,952 KB
testcase_09 AC 51 ms
62,464 KB
testcase_10 AC 52 ms
62,336 KB
testcase_11 AC 51 ms
62,336 KB
testcase_12 AC 52 ms
62,464 KB
testcase_13 AC 51 ms
62,592 KB
testcase_14 AC 53 ms
62,464 KB
testcase_15 AC 52 ms
63,232 KB
testcase_16 AC 54 ms
64,128 KB
testcase_17 AC 55 ms
64,384 KB
testcase_18 AC 55 ms
64,000 KB
testcase_19 AC 55 ms
64,256 KB
testcase_20 AC 55 ms
64,384 KB
testcase_21 AC 55 ms
64,768 KB
testcase_22 AC 55 ms
64,384 KB
testcase_23 AC 57 ms
64,640 KB
testcase_24 AC 56 ms
64,640 KB
testcase_25 AC 60 ms
64,384 KB
testcase_26 AC 58 ms
64,512 KB
testcase_27 AC 56 ms
64,384 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from copy import deepcopy
MOD = 10 ** 9 + 7

def matpow(A, B, w):
    l = len(A)
    while w:
        if w & 1:
            C = [0] * l
            for i in range(l):
                for j in range(l):
                    C[i] += A[i][j] * B[j]
                    C[i] %= MOD
            B = C.copy()
        C = [[0] * l for _ in range(l)]
        for i in range(l):
            for j in range(l):
                for k in range(l):
                    C[i][j] += A[i][k] * A[k][j]
                    C[i][j] %= MOD
        A = deepcopy(C)
        w >>= 1
    return B

n = int(input())

B =  [1, 1, 1, 0, 1, 0, 1, 0, 0]
A = [[0, 1, 1, 0, 0, 0, 0, 0, 0],
     [0, 0, 0, 1, 0, 1, 0, 0, 0],
     [0, 0, 0, 0, 0, 0, 1, 1, 0],
     [1, 0, 0, 0, 0, 0, 0, 0, 0],
     [0, 1, 0, 0, 0, 0, 0, 0, 0],
     [0, 0, 1, 0, 0, 0, 0, 0, 0],
     [0, 0, 0, 1, 0, 0, 0, 0, 0],
     [0, 0, 0, 0, 1, 0, 0, 0, 0],
     [0, 0, 0, 0, 0, 1, 0, 0, 0]]
     
B = matpow(A, B, n - 1)
ans = sum(B[6:])
print(ans % MOD)
0