結果

問題 No.1073 無限すごろく
ユーザー 👑 KazunKazun
提出日時 2020-06-05 23:09:00
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 66 ms / 2,000 ms
コード長 751 bytes
コンパイル時間 695 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 64,256 KB
最終ジャッジ日時 2024-05-09 23:10:42
合計ジャッジ時間 2,829 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,480 KB
testcase_01 AC 38 ms
52,864 KB
testcase_02 AC 47 ms
61,440 KB
testcase_03 AC 37 ms
52,224 KB
testcase_04 AC 38 ms
52,608 KB
testcase_05 AC 37 ms
52,480 KB
testcase_06 AC 38 ms
52,608 KB
testcase_07 AC 38 ms
52,352 KB
testcase_08 AC 41 ms
58,368 KB
testcase_09 AC 45 ms
58,496 KB
testcase_10 AC 41 ms
58,496 KB
testcase_11 AC 42 ms
58,496 KB
testcase_12 AC 42 ms
58,368 KB
testcase_13 AC 46 ms
61,056 KB
testcase_14 AC 47 ms
61,696 KB
testcase_15 AC 47 ms
61,568 KB
testcase_16 AC 47 ms
61,696 KB
testcase_17 AC 48 ms
61,824 KB
testcase_18 AC 48 ms
61,568 KB
testcase_19 AC 49 ms
61,952 KB
testcase_20 AC 48 ms
62,208 KB
testcase_21 AC 48 ms
61,696 KB
testcase_22 AC 48 ms
61,568 KB
testcase_23 AC 52 ms
63,872 KB
testcase_24 AC 54 ms
63,488 KB
testcase_25 AC 53 ms
63,360 KB
testcase_26 AC 53 ms
63,616 KB
testcase_27 AC 51 ms
62,976 KB
testcase_28 AC 53 ms
64,256 KB
testcase_29 AC 52 ms
63,872 KB
testcase_30 AC 52 ms
64,128 KB
testcase_31 AC 52 ms
64,128 KB
testcase_32 AC 66 ms
64,000 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
from math import log
def m(A,B,Y):
    C=[]
    for i in range(6):
        D=[]
        for j in range(6):
            S=0
            for k in range(6):
                S=(S+A[i][k]*B[k][j])%Y

            D.append(S)
        C.append(D)
    return C

Y=10**9+7
a=166666668

N=int(input())

if N<=6:
    print((7**(N-1)*a**N)%Y)
    sys.exit()

P=[[a,a,a,a,a,a],[1,0,0,0,0,0],[0,1,0,0,0,0],[0,0,1,0,0,0],[0,0,0,1,0,0],[0,0,0,0,1,0]]
Q=[P]

for _ in range(int(log(N,2))+1):
    R=Q[-1]
    Q.append(m(R,R,Y))

M=N-6
Z=[[1*(i==j) for j in range(6)] for i in range(6)]
for i in range(int(log(N,2))+1):
    if M%2==1:
        Z=m(Z,Q[i],Y)
    M=M>>1

W=0
L=a
for j in range(6):
    W=(W+Z[0][5-j]*L)%Y
    L=(L*a*7)%Y

print(W)
        
    
0