結果
問題 | No.1810 RGB Biscuits |
ユーザー | MasKoaTS |
提出日時 | 2022-11-29 22:58:32 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 3,275 bytes |
コンパイル時間 | 338 ms |
コンパイル使用メモリ | 82,428 KB |
実行使用メモリ | 79,280 KB |
最終ジャッジ日時 | 2024-10-07 08:53:38 |
合計ジャッジ時間 | 5,035 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 41 ms
53,944 KB |
testcase_01 | AC | 69 ms
71,812 KB |
testcase_02 | AC | 42 ms
55,968 KB |
testcase_03 | AC | 92 ms
76,304 KB |
testcase_04 | AC | 92 ms
76,840 KB |
testcase_05 | WA | - |
testcase_06 | AC | 342 ms
78,628 KB |
testcase_07 | AC | 323 ms
78,804 KB |
testcase_08 | AC | 330 ms
79,280 KB |
testcase_09 | AC | 326 ms
78,452 KB |
testcase_10 | WA | - |
testcase_11 | AC | 110 ms
76,864 KB |
testcase_12 | AC | 100 ms
76,292 KB |
testcase_13 | AC | 107 ms
77,492 KB |
testcase_14 | AC | 186 ms
78,668 KB |
testcase_15 | AC | 122 ms
76,708 KB |
testcase_16 | AC | 157 ms
77,504 KB |
testcase_17 | AC | 236 ms
78,516 KB |
testcase_18 | AC | 239 ms
78,780 KB |
testcase_19 | AC | 98 ms
76,784 KB |
testcase_20 | AC | 43 ms
55,040 KB |
testcase_21 | AC | 164 ms
78,684 KB |
ソースコード
import sys input = sys.stdin.readline class ModInt: mod = 998244353 def __init__(self, x): self.x = x % ModInt.mod @classmethod def set_mod(cls, mod: int) -> None: ModInt.mod = mod def __str__(self): return str(self.x) __repr__ = __str__ def __add__(self, other): return (ModInt(self.x + other.x) if isinstance(other, ModInt) else ModInt(self.x + other)) def __sub__(self, other): return (ModInt(self.x - other.x) if isinstance(other, ModInt) else ModInt(self.x - other)) def __mul__(self, other): return (ModInt(self.x * other.x) if isinstance(other, ModInt) else ModInt(self.x * other)) def __truediv__(self, other): return (ModInt(self.x * pow(other.x, ModInt.mod - 2, ModInt.mod)) if instance(other, ModInt) else ModInt(self.x * pow(other, ModInt.mod - 2, ModInt.mod))) def __pow__(self, other): return ModInt(pow(self.x, other.x, ModInt.mod)) if isinstance(other, ModInt) else ModInt(pow(self.x, other, ModInt.mod)) __radd__ = __add__ def __rsub__(self, other): return (ModInt(other.x - self.x) if isinstance(other, ModInt) else ModInt(other - self.x)) __rmul__ = __mul__ def __rtruediv__(self, other): return (ModInt(other.x * pow(self.x, ModInt.mod - 2, ModInt.mod)) if instance(other, ModInt) else ModInt(other * pow(self.x, ModInt.mod - 2, ModInt.mod))) def __rpow__(self, other): return ModInt(pow(other.x, self.x, ModInt.mod)) if instance(other, ModInt) else ModInt(pow(other, self.x, ModInt.mod)) def __iadd__(self, other): self = self + other return self def __isub__(self, other): self = self - other return self def __imul__(self, other): self = self * other return self def __itruediv__(self, other): self = self / other return self class Matrix: def __init__(self, A: list): if not(A and isinstance(A[0], list)): A = [A] self.A = A self.row = len(A) self.col = len(A[0]) self.I = None def set_A(self, A: list) -> None: self.A = A def set_I(self, I) -> None: self.I = I def __str__(self): return str(self.A) __repr__ = __str__ def __add__(self, other): ret = Matrix(self) for i in range(self.row): for j in range(self.col): ret.A[i][j] = self.A[i][j] + other.A[i][j] return ret def __sub__(self, other): ret = Matrix(self) for i in range(self.row): for j in range(self.col): ret.A[i][j] = self.A[i][j] - other.A[i][j] return ret def __mul__(self, other): assert(self.col == other.row) ret = Matrix([[0]*other.col for _ in [0]*self.row]) for i in range(self.row): for j in range(other.col): ret.A[i][j] = sum(self.A[i][k] * other.A[k][j] for k in range(self.col)) return ret def __pow__(self, other: int): mat = self ret = Matrix(self.I) n = other while(n): if(n & 1): ret = mat * ret mat = mat * mat n >>= 1 return ret """ Main Code """ a, b = map(int, input().split()) n = int(input()) P = Matrix([[ModInt(a), ModInt(b)], [ModInt(1), ModInt(0)]]) P.set_I([[ModInt(1), ModInt(0)], [ModInt(0), ModInt(1)]]) v = Matrix([[ModInt(1)], [ModInt(1)]]) ModInt.set_mod(10 ** 9 + 7) for t in [int(input()) for _ in [0]*n]: k = t >> 1 r = t & 1 v1 = (P ** k) * v v2 = P * v1 if(r == 1): print(v1.A[0][0] + v1.A[1][0] + v2.A[0][0]) else: print(v1.A[0][0] + v1.A[1][0])