結果

問題 No.1073 無限すごろく
ユーザー roarisroaris
提出日時 2020-06-05 23:48:16
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 48 ms / 2,000 ms
コード長 771 bytes
コンパイル時間 457 ms
コンパイル使用メモリ 82,120 KB
実行使用メモリ 62,392 KB
最終ジャッジ日時 2024-05-10 00:16:21
合計ジャッジ時間 2,947 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
54,276 KB
testcase_01 AC 38 ms
53,160 KB
testcase_02 AC 45 ms
60,184 KB
testcase_03 AC 40 ms
53,352 KB
testcase_04 AC 38 ms
52,332 KB
testcase_05 AC 43 ms
59,048 KB
testcase_06 AC 43 ms
59,796 KB
testcase_07 AC 43 ms
60,176 KB
testcase_08 AC 43 ms
60,108 KB
testcase_09 AC 42 ms
58,840 KB
testcase_10 AC 42 ms
58,892 KB
testcase_11 AC 44 ms
58,912 KB
testcase_12 AC 42 ms
59,292 KB
testcase_13 AC 45 ms
61,244 KB
testcase_14 AC 44 ms
60,908 KB
testcase_15 AC 44 ms
60,196 KB
testcase_16 AC 44 ms
60,688 KB
testcase_17 AC 46 ms
61,272 KB
testcase_18 AC 44 ms
59,992 KB
testcase_19 AC 45 ms
60,860 KB
testcase_20 AC 44 ms
60,172 KB
testcase_21 AC 45 ms
60,180 KB
testcase_22 AC 45 ms
60,716 KB
testcase_23 AC 47 ms
62,356 KB
testcase_24 AC 46 ms
62,392 KB
testcase_25 AC 47 ms
61,948 KB
testcase_26 AC 47 ms
61,544 KB
testcase_27 AC 47 ms
62,352 KB
testcase_28 AC 48 ms
61,964 KB
testcase_29 AC 47 ms
62,148 KB
testcase_30 AC 47 ms
62,032 KB
testcase_31 AC 47 ms
62,044 KB
testcase_32 AC 47 ms
62,016 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

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

N = int(input())
MOD = 10**9+7
x = [[1], [0], [0], [0], [0], [0]]
A = [[0]*6 for _ in range(6)]

for i in range(6):
    A[0][i] = pow(6, MOD-2, MOD)

for i in range(1, 6):
    A[i][i-1] = 1
    
res = mat_mul(mat_pow(A, N), x)
print(res[0][0])
0