結果

問題 No.2600 Avator Height
ユーザー rlangevinrlangevin
提出日時 2024-02-19 19:57:16
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 128 ms / 2,000 ms
コード長 324 bytes
コンパイル時間 283 ms
コンパイル使用メモリ 82,468 KB
実行使用メモリ 79,916 KB
最終ジャッジ日時 2024-09-29 01:11:17
合計ジャッジ時間 6,860 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
61,876 KB
testcase_01 AC 123 ms
79,404 KB
testcase_02 AC 125 ms
79,356 KB
testcase_03 AC 124 ms
79,384 KB
testcase_04 AC 119 ms
79,480 KB
testcase_05 AC 120 ms
79,532 KB
testcase_06 AC 127 ms
79,432 KB
testcase_07 AC 128 ms
79,316 KB
testcase_08 AC 124 ms
79,636 KB
testcase_09 AC 119 ms
79,380 KB
testcase_10 AC 121 ms
79,328 KB
testcase_11 AC 119 ms
79,316 KB
testcase_12 AC 119 ms
79,276 KB
testcase_13 AC 122 ms
79,640 KB
testcase_14 AC 118 ms
79,572 KB
testcase_15 AC 121 ms
79,584 KB
testcase_16 AC 121 ms
79,348 KB
testcase_17 AC 117 ms
79,308 KB
testcase_18 AC 118 ms
79,424 KB
testcase_19 AC 125 ms
79,580 KB
testcase_20 AC 116 ms
79,744 KB
testcase_21 AC 119 ms
79,648 KB
testcase_22 AC 124 ms
79,260 KB
testcase_23 AC 119 ms
79,544 KB
testcase_24 AC 90 ms
79,916 KB
testcase_25 AC 113 ms
79,644 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

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