結果

問題 No.1810 RGB Biscuits
ユーザー ああいいああいい
提出日時 2022-01-14 21:57:58
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 214 ms / 2,000 ms
コード長 694 bytes
コンパイル時間 211 ms
コンパイル使用メモリ 82,112 KB
実行使用メモリ 77,696 KB
最終ジャッジ日時 2024-11-20 10:01:40
合計ジャッジ時間 3,391 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
51,840 KB
testcase_01 AC 49 ms
61,168 KB
testcase_02 AC 46 ms
59,648 KB
testcase_03 AC 58 ms
65,280 KB
testcase_04 AC 59 ms
66,304 KB
testcase_05 AC 174 ms
76,544 KB
testcase_06 AC 199 ms
77,104 KB
testcase_07 AC 214 ms
77,696 KB
testcase_08 AC 198 ms
77,092 KB
testcase_09 AC 181 ms
77,440 KB
testcase_10 AC 159 ms
76,672 KB
testcase_11 AC 64 ms
64,896 KB
testcase_12 AC 78 ms
76,968 KB
testcase_13 AC 63 ms
69,760 KB
testcase_14 AC 112 ms
77,084 KB
testcase_15 AC 78 ms
76,544 KB
testcase_16 AC 92 ms
76,536 KB
testcase_17 AC 144 ms
76,692 KB
testcase_18 AC 153 ms
76,672 KB
testcase_19 AC 59 ms
65,788 KB
testcase_20 AC 49 ms
59,264 KB
testcase_21 AC 96 ms
76,484 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

A,B = map(int,input().split())
N = int(input())
P = 10 ** 9 + 7

R = [[A,B,0],[1,0,0],[0,0,0]]
S = [[1,0,0,],[0,1,0],[A,B,0]]
def seki(X,Y):
    l = [[0] *3 for _ in range(3)]
    for i in range(3):
        for j in range(3):
            for k in range(3):
                l[i][j] = (l[i][j] + X[i][k] * Y[k][j]) % P
    return l
for _ in range(N):
    t = int(input())
    q = t // 2
    r = t % 2
    tmp = [[1,0,0,],[0,1,0],[0,0,1]]
    Rnow = R
    while q:
        if q & 1:
            tmp = seki(Rnow,tmp)
        q >>= 1
        Rnow = seki(Rnow,Rnow)
    if r:
        tmp = seki(S,tmp)
    ans = tmp[0][0] + tmp[0][1] + tmp[1][0] + tmp[1][1] + tmp[2][0] + tmp[2][1]
    print(ans % P)
0