結果

問題 No.1073 無限すごろく
ユーザー ntudantuda
提出日時 2025-01-06 21:46:46
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 42 ms / 2,000 ms
コード長 554 bytes
コンパイル時間 1,554 ms
コンパイル使用メモリ 81,852 KB
実行使用メモリ 62,396 KB
最終ジャッジ日時 2025-01-06 21:46:50
合計ジャッジ時間 3,399 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
52,632 KB
testcase_01 AC 31 ms
52,776 KB
testcase_02 AC 36 ms
60,124 KB
testcase_03 AC 31 ms
53,320 KB
testcase_04 AC 31 ms
53,616 KB
testcase_05 AC 37 ms
57,904 KB
testcase_06 AC 34 ms
59,724 KB
testcase_07 AC 34 ms
59,120 KB
testcase_08 AC 35 ms
59,244 KB
testcase_09 AC 37 ms
59,924 KB
testcase_10 AC 36 ms
58,616 KB
testcase_11 AC 34 ms
59,888 KB
testcase_12 AC 37 ms
58,776 KB
testcase_13 AC 37 ms
60,144 KB
testcase_14 AC 35 ms
59,972 KB
testcase_15 AC 38 ms
59,912 KB
testcase_16 AC 37 ms
60,340 KB
testcase_17 AC 37 ms
61,592 KB
testcase_18 AC 35 ms
59,832 KB
testcase_19 AC 35 ms
60,224 KB
testcase_20 AC 36 ms
60,372 KB
testcase_21 AC 38 ms
61,720 KB
testcase_22 AC 35 ms
59,880 KB
testcase_23 AC 39 ms
60,692 KB
testcase_24 AC 40 ms
60,652 KB
testcase_25 AC 36 ms
62,024 KB
testcase_26 AC 38 ms
61,104 KB
testcase_27 AC 39 ms
61,152 KB
testcase_28 AC 40 ms
61,764 KB
testcase_29 AC 39 ms
61,304 KB
testcase_30 AC 39 ms
61,156 KB
testcase_31 AC 39 ms
60,808 KB
testcase_32 AC 41 ms
62,396 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

MOD = 10 ** 9 + 7
N = int(input())
A = [[0] * 6 for _ in range(6)]
X = [[0] * 6 for _ in range(6)]
for i in range(6):
    A[0][i] = pow(6, -1, MOD)
    X[i][i] = 1
for i in range(5):
    A[i + 1][i] = 1
while N > 0:
    if N & 1:
        X = mt(A, X)
    A = mt(A, A)
    N >>= 1
print(X[0][0])
0