結果

問題 No.1073 無限すごろく
ユーザー qumazakiqumazaki
提出日時 2020-06-06 03:22:19
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 63 ms / 2,000 ms
コード長 795 bytes
コンパイル時間 247 ms
コンパイル使用メモリ 82,516 KB
実行使用メモリ 70,728 KB
最終ジャッジ日時 2024-12-21 09:50:13
合計ジャッジ時間 3,376 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 56 ms
68,568 KB
testcase_01 AC 57 ms
68,068 KB
testcase_02 AC 61 ms
69,916 KB
testcase_03 AC 59 ms
68,240 KB
testcase_04 AC 58 ms
67,744 KB
testcase_05 AC 59 ms
69,060 KB
testcase_06 AC 59 ms
67,848 KB
testcase_07 AC 59 ms
68,764 KB
testcase_08 AC 58 ms
67,328 KB
testcase_09 AC 58 ms
69,344 KB
testcase_10 AC 57 ms
68,504 KB
testcase_11 AC 57 ms
67,656 KB
testcase_12 AC 59 ms
68,036 KB
testcase_13 AC 60 ms
69,104 KB
testcase_14 AC 60 ms
69,380 KB
testcase_15 AC 61 ms
68,656 KB
testcase_16 AC 61 ms
69,424 KB
testcase_17 AC 62 ms
69,032 KB
testcase_18 AC 60 ms
69,388 KB
testcase_19 AC 60 ms
69,504 KB
testcase_20 AC 61 ms
68,908 KB
testcase_21 AC 60 ms
70,088 KB
testcase_22 AC 61 ms
69,164 KB
testcase_23 AC 60 ms
69,052 KB
testcase_24 AC 60 ms
70,728 KB
testcase_25 AC 61 ms
69,464 KB
testcase_26 AC 62 ms
70,200 KB
testcase_27 AC 60 ms
69,224 KB
testcase_28 AC 60 ms
69,556 KB
testcase_29 AC 62 ms
70,152 KB
testcase_30 AC 62 ms
69,940 KB
testcase_31 AC 63 ms
70,240 KB
testcase_32 AC 63 ms
69,592 KB
権限があれば一括ダウンロードができます

ソースコード

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 += 1

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