結果

問題 No.2600 Avator Height
ユーザー tipstar0125tipstar0125
提出日時 2024-01-12 21:33:35
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 545 ms / 2,000 ms
コード長 297 bytes
コンパイル時間 382 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 79,832 KB
最終ジャッジ日時 2024-09-27 21:25:33
合計ジャッジ時間 16,082 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 50 ms
62,024 KB
testcase_01 AC 506 ms
79,280 KB
testcase_02 AC 514 ms
79,360 KB
testcase_03 AC 527 ms
79,472 KB
testcase_04 AC 535 ms
79,096 KB
testcase_05 AC 531 ms
79,208 KB
testcase_06 AC 511 ms
79,448 KB
testcase_07 AC 528 ms
79,144 KB
testcase_08 AC 520 ms
79,216 KB
testcase_09 AC 528 ms
79,484 KB
testcase_10 AC 518 ms
79,236 KB
testcase_11 AC 527 ms
79,256 KB
testcase_12 AC 535 ms
79,480 KB
testcase_13 AC 519 ms
79,160 KB
testcase_14 AC 519 ms
79,232 KB
testcase_15 AC 513 ms
79,348 KB
testcase_16 AC 512 ms
79,268 KB
testcase_17 AC 522 ms
79,360 KB
testcase_18 AC 529 ms
79,228 KB
testcase_19 AC 519 ms
79,416 KB
testcase_20 AC 512 ms
79,488 KB
testcase_21 AC 509 ms
79,352 KB
testcase_22 AC 523 ms
79,356 KB
testcase_23 AC 545 ms
79,496 KB
testcase_24 AC 469 ms
79,832 KB
testcase_25 AC 512 ms
79,344 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

Q=int(input())

mod=998244353
R=[1 for _ in range(int(2e5)+1)]
E=[1 for _ in range(int(2e5)+1)]
E[2]=3

for i in range(3,int(2e5)+1):
    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())
    ans=5*R[N]**2-E[N]**2
    ans+=mod
    ans%=mod
    print(ans)
0