結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,348 KB
testcase_01 AC 40 ms
52,884 KB
testcase_02 AC 43 ms
60,840 KB
testcase_03 AC 37 ms
52,588 KB
testcase_04 AC 36 ms
53,172 KB
testcase_05 AC 38 ms
58,780 KB
testcase_06 AC 38 ms
59,240 KB
testcase_07 AC 39 ms
59,552 KB
testcase_08 AC 41 ms
58,760 KB
testcase_09 AC 40 ms
59,056 KB
testcase_10 AC 38 ms
58,980 KB
testcase_11 AC 41 ms
58,808 KB
testcase_12 AC 40 ms
58,500 KB
testcase_13 AC 45 ms
60,020 KB
testcase_14 AC 42 ms
60,984 KB
testcase_15 AC 41 ms
60,956 KB
testcase_16 AC 44 ms
60,924 KB
testcase_17 AC 43 ms
60,296 KB
testcase_18 AC 45 ms
60,264 KB
testcase_19 AC 42 ms
59,880 KB
testcase_20 AC 45 ms
61,228 KB
testcase_21 AC 44 ms
61,016 KB
testcase_22 AC 42 ms
61,280 KB
testcase_23 AC 44 ms
62,204 KB
testcase_24 AC 47 ms
61,884 KB
testcase_25 AC 46 ms
61,812 KB
testcase_26 AC 44 ms
61,600 KB
testcase_27 AC 45 ms
62,004 KB
testcase_28 AC 45 ms
63,068 KB
testcase_29 AC 46 ms
62,072 KB
testcase_30 AC 45 ms
62,572 KB
testcase_31 AC 47 ms
61,660 KB
testcase_32 AC 44 ms
62,492 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