結果

問題 No.673 カブトムシ
ユーザー mkawa2mkawa2
提出日時 2020-04-25 12:19:28
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 561 ms / 2,000 ms
コード長 489 bytes
コンパイル時間 174 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 44,736 KB
最終ジャッジ日時 2024-11-06 22:35:01
合計ジャッジ時間 13,239 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 548 ms
43,964 KB
testcase_01 AC 558 ms
43,972 KB
testcase_02 AC 561 ms
44,212 KB
testcase_03 AC 561 ms
44,104 KB
testcase_04 AC 557 ms
44,220 KB
testcase_05 AC 557 ms
44,216 KB
testcase_06 AC 555 ms
44,348 KB
testcase_07 AC 550 ms
44,736 KB
testcase_08 AC 549 ms
44,220 KB
testcase_09 AC 540 ms
43,964 KB
testcase_10 AC 536 ms
44,100 KB
testcase_11 AC 546 ms
44,348 KB
testcase_12 AC 555 ms
44,100 KB
testcase_13 AC 544 ms
44,224 KB
testcase_14 AC 549 ms
44,480 KB
testcase_15 AC 552 ms
44,228 KB
testcase_16 AC 553 ms
44,692 KB
testcase_17 AC 552 ms
44,604 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import numpy as np
import sys

sys.setrecursionlimit(10 ** 6)
def MI(): return map(int, sys.stdin.readline().split())

def main():
    md = 10 ** 9 + 7
    b,c,d=MI()
    b,c=b%md,c%md
    m=[[c,0],[1,1]]
    m=np.array(m,dtype="i8")
    pm=np.eye(2,dtype="i8")
    while d>0:
        if d&1:
            pm=np.dot(pm,m)
            pm%=md
        d>>=1
        m=np.dot(m,m)
        m%=md
    a0=[0,b*c%md]
    a0=np.array(a0,dtype="i8")
    ans=np.dot(a0,pm)[0]%md
    print(ans)

main()
0