結果

問題 No.1073 無限すごろく
ユーザー 👑 KazunKazun
提出日時 2020-06-05 22:55:07
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 708 bytes
コンパイル時間 187 ms
コンパイル使用メモリ 82,440 KB
実行使用メモリ 72,256 KB
最終ジャッジ日時 2024-05-09 22:40:24
合計ジャッジ時間 5,296 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 46 ms
58,112 KB
testcase_01 AC 47 ms
52,096 KB
testcase_02 AC 54 ms
60,928 KB
testcase_03 AC 42 ms
51,712 KB
testcase_04 AC 44 ms
52,096 KB
testcase_05 AC 46 ms
51,712 KB
testcase_06 AC 41 ms
51,968 KB
testcase_07 AC 41 ms
51,968 KB
testcase_08 AC 46 ms
52,224 KB
testcase_09 AC 44 ms
57,472 KB
testcase_10 AC 39 ms
52,352 KB
testcase_11 AC 45 ms
57,472 KB
testcase_12 AC 44 ms
57,728 KB
testcase_13 AC 51 ms
61,440 KB
testcase_14 AC 51 ms
61,824 KB
testcase_15 AC 53 ms
61,568 KB
testcase_16 AC 53 ms
61,952 KB
testcase_17 AC 59 ms
62,592 KB
testcase_18 AC 54 ms
61,568 KB
testcase_19 AC 62 ms
62,592 KB
testcase_20 AC 57 ms
62,208 KB
testcase_21 AC 54 ms
61,824 KB
testcase_22 AC 56 ms
61,952 KB
testcase_23 TLE -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
testcase_30 -- -
testcase_31 -- -
testcase_32 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys

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]
k=2
while k<=N:
    R=Q[-1]
    k*=2
    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(k):
    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