結果

問題 No.1073 無限すごろく
ユーザー yuppe19 😺
提出日時 2020-06-13 21:29:35
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
AC  
実行時間 38 ms / 2,000 ms
コード長 1,273 bytes
コンパイル時間 219 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 11,008 KB
最終ジャッジ日時 2024-06-25 22:02:08
合計ジャッジ時間 2,458 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 30
権限があれば一括ダウンロードができます

ソースコード

diff #

#!/usr/bin/python3
# †
mod = 10**9 + 7

def mod_inv(a, m):
    b, s, t, old_a = m, 1, 0, a
    while b:
        q = a // b
        a %= b
        a, b = b, a
        s -= t * q
        s, t = t, s
    if a != 1:
        print('Error: {}**(-1) mod {} does not exist.'.format(old_a, m))
        return None
    return s + m if s < 0 else s


def matmul(A, B):
    p, q = len(A[0]), len(B)
    if p != q:
        raise ValueError('len(A[0])={} len(B)={}'.format(p, q))
    rows, cols, times = len(A), len(B[0]), len(A[0])
    res = [[0] * cols for _ in range(rows)]
    for r in range(rows):
        for c in range(cols):
            res[r][c] = sum(A[r][i]*B[i][c] % mod for i in range(times))
            res[r][c] %= mod
    return res


def matpow(A, n):
    m = len(A)
    res = [[int(i==j) for j in range(m)] for i in range(m)]
    while n > 0:
        if n & 1:
            res = matmul(res, A)
        A = matmul(A, A)
        n >>= 1
    return res


###
if __name__ == '__main__':
    n = int(input())
    x = mod_inv(6, mod)
    A = [
        [x, x, x, x, x, x],
        [1, 0, 0, 0, 0, 0],
        [0, 1, 0, 0, 0, 0],
        [0, 0, 1, 0, 0, 0],
        [0, 0, 0, 1, 0, 0],
        [0, 0, 0, 0, 1, 0],
    ]
    R = matpow(A, n)
    res = R[0][0]
    print(res)
0