結果

問題 No.1275 綺麗な式
ユーザー ygd.ygd.
提出日時 2020-11-25 00:38:38
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 512 ms / 2,000 ms
コード長 395 bytes
コンパイル時間 88 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 44,476 KB
最終ジャッジ日時 2024-07-23 18:59:21
合計ジャッジ時間 34,368 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 499 ms
44,216 KB
testcase_01 AC 496 ms
44,092 KB
testcase_02 AC 496 ms
44,224 KB
testcase_03 AC 504 ms
43,964 KB
testcase_04 AC 501 ms
44,216 KB
testcase_05 AC 500 ms
44,336 KB
testcase_06 AC 503 ms
43,960 KB
testcase_07 AC 504 ms
43,956 KB
testcase_08 AC 500 ms
44,096 KB
testcase_09 AC 498 ms
44,220 KB
testcase_10 AC 508 ms
43,956 KB
testcase_11 AC 503 ms
44,208 KB
testcase_12 AC 498 ms
43,960 KB
testcase_13 AC 499 ms
44,096 KB
testcase_14 AC 501 ms
44,216 KB
testcase_15 AC 501 ms
44,212 KB
testcase_16 AC 500 ms
44,340 KB
testcase_17 AC 497 ms
44,216 KB
testcase_18 AC 502 ms
43,960 KB
testcase_19 AC 496 ms
43,952 KB
testcase_20 AC 502 ms
44,340 KB
testcase_21 AC 497 ms
44,264 KB
testcase_22 AC 497 ms
44,476 KB
testcase_23 AC 492 ms
44,000 KB
testcase_24 AC 495 ms
43,824 KB
testcase_25 AC 500 ms
44,088 KB
testcase_26 AC 501 ms
44,220 KB
testcase_27 AC 502 ms
44,088 KB
testcase_28 AC 500 ms
44,216 KB
testcase_29 AC 497 ms
44,220 KB
testcase_30 AC 501 ms
43,956 KB
testcase_31 AC 495 ms
44,224 KB
testcase_32 AC 498 ms
44,084 KB
testcase_33 AC 502 ms
44,216 KB
testcase_34 AC 496 ms
43,952 KB
testcase_35 AC 501 ms
44,216 KB
testcase_36 AC 500 ms
44,092 KB
testcase_37 AC 496 ms
44,084 KB
testcase_38 AC 500 ms
44,080 KB
testcase_39 AC 501 ms
43,964 KB
testcase_40 AC 503 ms
44,336 KB
testcase_41 AC 499 ms
44,216 KB
testcase_42 AC 498 ms
44,212 KB
testcase_43 AC 499 ms
44,088 KB
testcase_44 AC 500 ms
44,468 KB
testcase_45 AC 501 ms
44,080 KB
testcase_46 AC 495 ms
43,960 KB
testcase_47 AC 497 ms
44,000 KB
testcase_48 AC 495 ms
44,088 KB
testcase_49 AC 503 ms
43,964 KB
testcase_50 AC 494 ms
44,340 KB
testcase_51 AC 498 ms
44,468 KB
testcase_52 AC 497 ms
44,340 KB
testcase_53 AC 494 ms
43,960 KB
testcase_54 AC 512 ms
44,088 KB
testcase_55 AC 498 ms
44,348 KB
testcase_56 AC 502 ms
44,084 KB
testcase_57 AC 506 ms
44,472 KB
testcase_58 AC 502 ms
44,216 KB
testcase_59 AC 502 ms
43,952 KB
testcase_60 AC 498 ms
44,204 KB
testcase_61 AC 500 ms
44,092 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import numpy as np
MOD = pow(10,9)+7
a,b = map(int,input().split())
n = int(input())
A = np.array([[a, b], [1, a]])
#print(A)
MAX = 70
L = [A]
for i in range(MAX):
  A = np.dot(A,A)
  A = np.mod(A, MOD)
  #print(A)
  L.append(A)
#print(L)
#print(B)
X = np.array([[1, 0], [0, 1]])
for i in range(MAX):
  if (n>>i)&1 == 1:
    X = np.dot(X,L[i])
    X = np.mod(X,MOD)
ans = X[0,0]*2
print(ans%MOD)
0