結果

問題 No.2600 Avator Height
ユーザー なえしらなえしら
提出日時 2024-04-01 23:25:12
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 473 ms / 2,000 ms
コード長 251 bytes
コンパイル時間 236 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 79,744 KB
最終ジャッジ日時 2024-09-30 22:48:13
合計ジャッジ時間 15,321 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 47 ms
61,056 KB
testcase_01 AC 439 ms
79,104 KB
testcase_02 AC 454 ms
79,488 KB
testcase_03 AC 450 ms
79,488 KB
testcase_04 AC 445 ms
79,232 KB
testcase_05 AC 449 ms
79,232 KB
testcase_06 AC 470 ms
79,360 KB
testcase_07 AC 454 ms
79,488 KB
testcase_08 AC 472 ms
79,488 KB
testcase_09 AC 458 ms
79,232 KB
testcase_10 AC 473 ms
79,488 KB
testcase_11 AC 461 ms
79,360 KB
testcase_12 AC 468 ms
79,360 KB
testcase_13 AC 467 ms
79,232 KB
testcase_14 AC 453 ms
79,488 KB
testcase_15 AC 442 ms
79,616 KB
testcase_16 AC 448 ms
79,488 KB
testcase_17 AC 440 ms
79,616 KB
testcase_18 AC 446 ms
79,360 KB
testcase_19 AC 432 ms
79,744 KB
testcase_20 AC 447 ms
79,232 KB
testcase_21 AC 447 ms
79,232 KB
testcase_22 AC 442 ms
79,404 KB
testcase_23 AC 449 ms
79,488 KB
testcase_24 AC 418 ms
79,616 KB
testcase_25 AC 420 ms
79,104 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

MOD = 998244353
MAX_N = 2*10**5

R = [1]*(MAX_N+1)
E = [1]*(MAX_N+1)
E[2] = 3
for i in range(3, MAX_N+1):
  R[i] = (R[i-1]+R[i-2])%MOD
  E[i] = (E[i-1]+E[i-2])%MOD

for _ in range(Q := int(input())):
  N = int(input())
  print((5*R[N]**2-E[N]**2)%MOD)
0