結果

問題 No.2600 Avator Height
ユーザー kemunikukemuniku
提出日時 2024-01-12 21:27:30
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 528 ms / 2,000 ms
コード長 225 bytes
コンパイル時間 325 ms
コンパイル使用メモリ 81,956 KB
実行使用メモリ 105,000 KB
最終ジャッジ日時 2024-09-27 21:14:34
合計ジャッジ時間 15,290 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 1
other AC * 25
権限があれば一括ダウンロードができます

ソースコード

diff #

R = [1,1,1]
E = [1,1,3]
for i in range(200100):
    R.append((R[-1]+R[-2])%998244353)
    E.append((E[-1]+E[-2])%998244353)
Q = int(input())
for i in range(Q):
    N = int(input())
    print((5*R[N]*R[N]-E[N]*E[N])%998244353)
0