結果

問題 No.891 隣接3項間の漸化式
ユーザー ecotteaecottea
提出日時 2022-10-04 16:40:50
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 500 ms / 2,000 ms
コード長 550 bytes
コンパイル時間 142 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 44,336 KB
最終ジャッジ日時 2024-06-09 13:37:28
合計ジャッジ時間 23,197 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 459 ms
44,200 KB
testcase_01 AC 471 ms
43,692 KB
testcase_02 AC 464 ms
43,696 KB
testcase_03 AC 451 ms
43,696 KB
testcase_04 AC 464 ms
44,080 KB
testcase_05 AC 458 ms
44,088 KB
testcase_06 AC 468 ms
43,812 KB
testcase_07 AC 472 ms
43,824 KB
testcase_08 AC 481 ms
43,828 KB
testcase_09 AC 469 ms
43,700 KB
testcase_10 AC 458 ms
44,076 KB
testcase_11 AC 446 ms
43,824 KB
testcase_12 AC 454 ms
44,336 KB
testcase_13 AC 471 ms
44,336 KB
testcase_14 AC 459 ms
44,204 KB
testcase_15 AC 452 ms
43,696 KB
testcase_16 AC 458 ms
43,824 KB
testcase_17 AC 447 ms
43,688 KB
testcase_18 AC 454 ms
44,084 KB
testcase_19 AC 456 ms
43,956 KB
testcase_20 AC 442 ms
43,948 KB
testcase_21 AC 455 ms
43,696 KB
testcase_22 AC 450 ms
44,084 KB
testcase_23 AC 458 ms
44,080 KB
testcase_24 AC 468 ms
43,828 KB
testcase_25 AC 454 ms
43,696 KB
testcase_26 AC 450 ms
43,692 KB
testcase_27 AC 461 ms
43,728 KB
testcase_28 AC 481 ms
43,692 KB
testcase_29 AC 460 ms
43,820 KB
testcase_30 AC 453 ms
43,680 KB
testcase_31 AC 469 ms
43,832 KB
testcase_32 AC 500 ms
43,692 KB
testcase_33 AC 458 ms
44,076 KB
testcase_34 AC 449 ms
44,076 KB
testcase_35 AC 463 ms
43,956 KB
testcase_36 AC 463 ms
44,332 KB
testcase_37 AC 451 ms
43,692 KB
testcase_38 AC 449 ms
44,072 KB
testcase_39 AC 468 ms
43,692 KB
testcase_40 AC 455 ms
44,076 KB
testcase_41 AC 447 ms
43,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import numpy as np

a, b, n = map(int, input().split())

if n <= 1:
    print(n)
    exit()

n -= 1

MOD = 10**9+7

# numpy の内部では多倍長整数を使っているわけではないので注意.
# pow_a = np.array([[a, b], [1, 0]])
# res = np.array([[1, 0], [0, 1]])
# print(res.dtype) -> int32

pow_a = np.array([[a, b], [1, 0]], dtype = 'int64')
res = np.array([[1, 0], [0, 1]], dtype = 'int64')

while n > 0:
    if n % 2 == 1:
        res = np.dot(res, pow_a) % MOD
    pow_a = np.dot(pow_a, pow_a) % MOD
    n //= 2

print(res[0][0])
0