結果

問題 No.1810 RGB Biscuits
ユーザー MasKoaTSMasKoaTS
提出日時 2021-12-22 11:51:10
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 140 ms / 2,000 ms
コード長 822 bytes
コンパイル時間 160 ms
コンパイル使用メモリ 82,624 KB
実行使用メモリ 77,312 KB
最終ジャッジ日時 2024-09-16 04:54:29
合計ジャッジ時間 3,079 ms
ジャッジサーバーID
(参考情報)
judge6 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
52,224 KB
testcase_01 AC 47 ms
62,208 KB
testcase_02 AC 37 ms
52,352 KB
testcase_03 AC 57 ms
67,712 KB
testcase_04 AC 59 ms
68,736 KB
testcase_05 AC 136 ms
76,672 KB
testcase_06 AC 136 ms
76,160 KB
testcase_07 AC 135 ms
76,672 KB
testcase_08 AC 137 ms
77,276 KB
testcase_09 AC 140 ms
76,656 KB
testcase_10 AC 125 ms
76,928 KB
testcase_11 AC 79 ms
76,048 KB
testcase_12 AC 64 ms
71,808 KB
testcase_13 AC 61 ms
70,912 KB
testcase_14 AC 96 ms
76,928 KB
testcase_15 AC 64 ms
72,960 KB
testcase_16 AC 92 ms
76,800 KB
testcase_17 AC 121 ms
76,800 KB
testcase_18 AC 121 ms
77,312 KB
testcase_19 AC 55 ms
66,560 KB
testcase_20 AC 37 ms
52,480 KB
testcase_21 AC 93 ms
76,672 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline
mod = 10 ** 9 + 7

a,b = map(int, input().split())
n = int(input())
t = [int(input()) for _ in [0]*n]

A = [[a,b],
	 [1,0]]
v = [[1],
	 [1]]

def matrix_prod(A,B):
	ac = len(A);	al = len(A[0])
	bc = len(B);	bl = len(B[0])
	res = [[0] * bl for _ in [0] * ac]
	for i in range(ac):
		for j in range(bl):
			for k in range(al):
				res[i][j] += A[i][k] * B[k][j]
				res[i][j] %= mod
	return res


def matrix_exp(A,n):
	ac = len(A)
	res = [[0] * ac for _ in [0] * ac]
	for i in range(ac):
		res[i][i] = 1
	while(n):
		if(n & 1):
			res = matrix_prod(A,res)
		A = matrix_prod(A,A)
		n >>= 1
	return res

for i in t:
	v1 = matrix_prod(matrix_exp(A, i // 2), v)
	v2 = matrix_prod(A, v1)
	if(i & 1):
		print((v1[0][0] + v1[1][0] + v2[0][0]) % mod)
	else:
		print((v1[0][0] + v1[1][0]) % mod)
0