結果

問題 No.2600 Avator Height
ユーザー Mottchan
提出日時 2024-01-13 18:03:42
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 148 ms / 2,000 ms
コード長 853 bytes
コンパイル時間 227 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 79,152 KB
最終ジャッジ日時 2024-09-28 01:40:04
合計ジャッジ時間 6,342 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 1
other AC * 25
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
#sys.setrecursionlimit(5*10**5)
input = sys.stdin.readline
sys.set_int_max_str_digits(0)
from collections import defaultdict, deque, Counter
from heapq import heappop, heappush
from bisect import bisect_left, bisect_right
from math import gcd, lcm, factorial, perm, comb
from itertools import product, permutations, combinations
from functools import lru_cache #@lru_cache(maxsize=128)
#重複あり:list(product(list('123'),repeat = 2)),重複なし:list(permutations(list('123')))
MOD = 998244353

ans = [0]*(2*10**5+2)

tp1 = [1,1]
tp2 = [1,3]
ans[0] = 4
ans[1] = -4

for i in range(2*10**5):
    a = (tp1[0] + tp1[1])%MOD
    b = (tp2[0] + tp2[1])%MOD
    ans[i+2] = pow(a,2) * 5 - pow(b,2)
    tp1[0] = tp1[1]
    tp2[0] = tp2[1]
    tp1[1] = a
    tp2[1] = b

n = int(input())
for _ in range(n):
    print(ans[int(input())-1] % MOD)
0