結果

問題 No.1275 綺麗な式
ユーザー tanon710tanon710
提出日時 2020-10-30 23:09:33
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 40 ms / 2,000 ms
コード長 571 bytes
コンパイル時間 247 ms
コンパイル使用メモリ 82,140 KB
実行使用メモリ 54,728 KB
最終ジャッジ日時 2024-07-22 02:49:59
合計ジャッジ時間 3,895 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
53,016 KB
testcase_01 AC 39 ms
53,392 KB
testcase_02 AC 35 ms
53,272 KB
testcase_03 AC 37 ms
54,160 KB
testcase_04 AC 37 ms
52,992 KB
testcase_05 AC 36 ms
52,520 KB
testcase_06 AC 36 ms
54,584 KB
testcase_07 AC 38 ms
53,268 KB
testcase_08 AC 37 ms
52,824 KB
testcase_09 AC 37 ms
53,020 KB
testcase_10 AC 37 ms
53,348 KB
testcase_11 AC 40 ms
54,092 KB
testcase_12 AC 36 ms
52,852 KB
testcase_13 AC 39 ms
53,008 KB
testcase_14 AC 40 ms
52,208 KB
testcase_15 AC 39 ms
52,744 KB
testcase_16 AC 36 ms
53,256 KB
testcase_17 AC 38 ms
53,136 KB
testcase_18 AC 36 ms
53,064 KB
testcase_19 AC 38 ms
53,304 KB
testcase_20 AC 37 ms
53,160 KB
testcase_21 AC 37 ms
53,660 KB
testcase_22 AC 37 ms
52,748 KB
testcase_23 AC 37 ms
53,932 KB
testcase_24 AC 37 ms
53,144 KB
testcase_25 AC 35 ms
54,728 KB
testcase_26 AC 36 ms
52,772 KB
testcase_27 AC 35 ms
53,212 KB
testcase_28 AC 36 ms
52,936 KB
testcase_29 AC 37 ms
52,616 KB
testcase_30 AC 35 ms
52,460 KB
testcase_31 AC 36 ms
53,084 KB
testcase_32 AC 36 ms
53,944 KB
testcase_33 AC 36 ms
53,356 KB
testcase_34 AC 37 ms
53,256 KB
testcase_35 AC 35 ms
52,420 KB
testcase_36 AC 36 ms
53,540 KB
testcase_37 AC 36 ms
53,736 KB
testcase_38 AC 34 ms
54,056 KB
testcase_39 AC 35 ms
52,920 KB
testcase_40 AC 35 ms
53,372 KB
testcase_41 AC 36 ms
53,492 KB
testcase_42 AC 36 ms
53,208 KB
testcase_43 AC 37 ms
52,700 KB
testcase_44 AC 37 ms
53,280 KB
testcase_45 AC 39 ms
52,208 KB
testcase_46 AC 35 ms
52,944 KB
testcase_47 AC 36 ms
52,400 KB
testcase_48 AC 35 ms
52,932 KB
testcase_49 AC 39 ms
53,288 KB
testcase_50 AC 35 ms
53,236 KB
testcase_51 AC 36 ms
53,020 KB
testcase_52 AC 37 ms
53,612 KB
testcase_53 AC 37 ms
53,212 KB
testcase_54 AC 38 ms
53,248 KB
testcase_55 AC 35 ms
52,904 KB
testcase_56 AC 36 ms
53,084 KB
testcase_57 AC 35 ms
53,684 KB
testcase_58 AC 35 ms
53,816 KB
testcase_59 AC 35 ms
52,272 KB
testcase_60 AC 36 ms
52,888 KB
testcase_61 AC 36 ms
52,760 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

mod=10**9+7

def prod(a,b):
    ret=[[0,0],[0,0]]
    for i in range(2):
        for j in range(2):
            for k in range(2):
                ret[i][j]+=a[i][k]*b[k][j]
            ret[i][j]%=mod
    return ret

a,b=map(int,input().split())
n=int(input())
a1=2*a
a2=2*(a**2+b)
if n==0:
    print(2)
elif n==1:
    print(a1)
elif n==2:
    print(a2)
else:
    n-=2
    mat=[[1,0],[0,1]]
    coef=[[2*a,-(a**2-b)],[1,0]]
    for i in range(60):
        if n&(2**i):
            mat=prod(mat,coef)
        coef=prod(coef,coef)
    print((mat[0][0]*a2+mat[0][1]*a1)%mod)
0