結果

問題 No.1073 無限すごろく
ユーザー qumazakiqumazaki
提出日時 2020-06-06 03:19:45
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 795 bytes
コンパイル時間 828 ms
コンパイル使用メモリ 82,372 KB
実行使用メモリ 74,484 KB
最終ジャッジ日時 2024-06-01 06:04:42
合計ジャッジ時間 3,480 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 59 ms
64,644 KB
testcase_01 AC 62 ms
64,392 KB
testcase_02 AC 60 ms
66,108 KB
testcase_03 AC 57 ms
64,476 KB
testcase_04 AC 56 ms
65,136 KB
testcase_05 AC 58 ms
64,420 KB
testcase_06 AC 56 ms
63,872 KB
testcase_07 AC 56 ms
65,836 KB
testcase_08 AC 56 ms
64,620 KB
testcase_09 AC 58 ms
64,164 KB
testcase_10 AC 56 ms
64,196 KB
testcase_11 AC 56 ms
65,152 KB
testcase_12 AC 56 ms
64,520 KB
testcase_13 AC 58 ms
64,912 KB
testcase_14 AC 58 ms
65,184 KB
testcase_15 AC 59 ms
66,004 KB
testcase_16 AC 58 ms
64,792 KB
testcase_17 AC 60 ms
65,256 KB
testcase_18 AC 58 ms
64,780 KB
testcase_19 AC 58 ms
64,736 KB
testcase_20 AC 59 ms
64,852 KB
testcase_21 AC 58 ms
66,248 KB
testcase_22 AC 58 ms
65,200 KB
testcase_23 RE -
testcase_24 RE -
testcase_25 RE -
testcase_26 RE -
testcase_27 RE -
testcase_28 RE -
testcase_29 RE -
testcase_30 RE -
testcase_31 RE -
testcase_32 RE -
権限があれば一括ダウンロードができます

ソースコード

diff #

import copy

n = int(input())
mod = 10**9 + 7

def mat_power(a,b):
    # aもbもm*m列の行列とする。
    m = 6
    res = [[0] *m for _ in range(m)]
    for i in range(m):
        for j in range(m):
            for k in range(m):
                res[i][j] += a[i][k] * b[k][j]
            res[i][j] %= mod

    return res

# x0 = [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(5):
    a[i+1][i] = 1

a_exp = []
a_exp.append(a)
i = 1
while(2**i < 10**18):
    ai = mat_power(a_exp[-1],a_exp[-1])
    a_exp.append(copy.deepcopy(ai))
    i += 2

a_n = [[0]*6 for _ in range(6)]
for i in range(6):
    a_n[i][i] = 1

i = 0
while(n>0):
    if(n%2==1):
        a_n = mat_power(a_n,a_exp[i])
    i += 1
    n //= 2

print(a_n[0][0])
0