結果

問題 No.1810 RGB Biscuits
ユーザー brthyyjpbrthyyjp
提出日時 2022-01-14 21:51:52
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 241 ms / 2,000 ms
コード長 1,412 bytes
コンパイル時間 185 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 77,744 KB
最終ジャッジ日時 2024-11-20 09:37:26
合計ジャッジ時間 3,549 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
52,352 KB
testcase_01 AC 50 ms
61,568 KB
testcase_02 AC 46 ms
59,520 KB
testcase_03 AC 58 ms
66,304 KB
testcase_04 AC 61 ms
67,456 KB
testcase_05 AC 198 ms
76,836 KB
testcase_06 AC 241 ms
77,744 KB
testcase_07 AC 224 ms
77,056 KB
testcase_08 AC 217 ms
77,176 KB
testcase_09 AC 226 ms
77,644 KB
testcase_10 AC 174 ms
77,332 KB
testcase_11 AC 62 ms
68,864 KB
testcase_12 AC 70 ms
72,576 KB
testcase_13 AC 64 ms
70,656 KB
testcase_14 AC 117 ms
76,672 KB
testcase_15 AC 78 ms
76,928 KB
testcase_16 AC 97 ms
76,928 KB
testcase_17 AC 165 ms
77,320 KB
testcase_18 AC 168 ms
77,056 KB
testcase_19 AC 57 ms
65,280 KB
testcase_20 AC 46 ms
59,648 KB
testcase_21 AC 100 ms
76,540 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# A*B
def mat_mul(A, B, mod):
    C = [[0]*len(B[0]) for i in range(len(A))]
    for i in range(len(A)):
        for k in range(len(B)):
            for j in range(len(B[0])):
                C[i][j] = (C[i][j] + A[i][k]*B[k][j])%mod
    return C

#A**n
def mat_pow(A, n, mod):
    B = [[0]*len(A) for i in range(len(A))]
    for i in range(len(A)):
        B[i][i] = 1
    while n > 0:
        if n & 1 == 1:
            B = mat_mul(A, B, mod)
        A = mat_mul(A, A, mod)
        n = n>>1
    return B

import sys
import io, os
input = io.BytesIO(os.read(0,os.fstat(0).st_size)).readline

mod = 10**9+7

def main():

    a, b = map(int, input().split())
    n = int(input())
    X0 = [1, 1, 0]
    X1 = [1, 1, a+b]
    for i in range(n):
        t = int(input())
        if t%2 == 0:
            t //= 2
            A = [[a, b, 0], [1, 0, 0], [0, 0, 0]]
            A = mat_pow(A, t, mod)
            ans = 0
            for i in range(3):
                for j in range(3):
                    ans += A[i][j]*X0[j]
                    ans %= mod
            print(ans)
        else:
            t //= 2
            A = [[0, 0, 1], [1, 0, 0], [b, 0, a]]
            A = mat_pow(A, t, mod)
            ans = 0
            for i in range(3):
                for j in range(3):
                    ans += A[i][j]*X1[j]
                    ans %= mod
            print(ans)
if __name__ == '__main__':
    main()
0