結果

問題 No.1073 無限すごろく
ユーザー yuppe19 😺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
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
10,880 KB
testcase_01 AC 30 ms
11,008 KB
testcase_02 AC 33 ms
10,880 KB
testcase_03 AC 30 ms
11,008 KB
testcase_04 AC 30 ms
10,752 KB
testcase_05 AC 31 ms
10,752 KB
testcase_06 AC 30 ms
10,880 KB
testcase_07 AC 31 ms
10,752 KB
testcase_08 AC 30 ms
10,880 KB
testcase_09 AC 31 ms
10,880 KB
testcase_10 AC 31 ms
10,880 KB
testcase_11 AC 32 ms
10,752 KB
testcase_12 AC 30 ms
10,752 KB
testcase_13 AC 32 ms
10,752 KB
testcase_14 AC 32 ms
11,008 KB
testcase_15 AC 32 ms
10,752 KB
testcase_16 AC 32 ms
10,880 KB
testcase_17 AC 33 ms
10,880 KB
testcase_18 AC 33 ms
10,752 KB
testcase_19 AC 33 ms
10,880 KB
testcase_20 AC 33 ms
11,008 KB
testcase_21 AC 33 ms
10,752 KB
testcase_22 AC 33 ms
11,008 KB
testcase_23 AC 35 ms
10,752 KB
testcase_24 AC 36 ms
10,752 KB
testcase_25 AC 36 ms
10,880 KB
testcase_26 AC 36 ms
10,752 KB
testcase_27 AC 34 ms
10,752 KB
testcase_28 AC 37 ms
10,880 KB
testcase_29 AC 38 ms
10,880 KB
testcase_30 AC 37 ms
10,880 KB
testcase_31 AC 37 ms
10,752 KB
testcase_32 AC 37 ms
10,752 KB
権限があれば一括ダウンロードができます

ソースコード

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