結果

問題 No.2600 Avator Height
ユーザー playerplayer
提出日時 2024-01-13 20:47:02
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 477 ms / 2,000 ms
コード長 330 bytes
コンパイル時間 157 ms
コンパイル使用メモリ 82,424 KB
実行使用メモリ 79,488 KB
最終ジャッジ日時 2024-09-28 01:45:42
合計ジャッジ時間 14,012 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
60,928 KB
testcase_01 AC 467 ms
79,360 KB
testcase_02 AC 463 ms
79,272 KB
testcase_03 AC 471 ms
78,848 KB
testcase_04 AC 464 ms
79,256 KB
testcase_05 AC 462 ms
79,488 KB
testcase_06 AC 451 ms
78,848 KB
testcase_07 AC 444 ms
79,104 KB
testcase_08 AC 450 ms
79,252 KB
testcase_09 AC 463 ms
79,104 KB
testcase_10 AC 454 ms
79,488 KB
testcase_11 AC 477 ms
78,976 KB
testcase_12 AC 461 ms
79,104 KB
testcase_13 AC 466 ms
79,360 KB
testcase_14 AC 468 ms
79,352 KB
testcase_15 AC 454 ms
79,248 KB
testcase_16 AC 456 ms
79,488 KB
testcase_17 AC 449 ms
79,232 KB
testcase_18 AC 446 ms
79,104 KB
testcase_19 AC 446 ms
79,232 KB
testcase_20 AC 451 ms
79,360 KB
testcase_21 AC 465 ms
79,104 KB
testcase_22 AC 463 ms
79,360 KB
testcase_23 AC 458 ms
79,488 KB
testcase_24 AC 421 ms
79,280 KB
testcase_25 AC 442 ms
79,488 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

q = int(input())
mod = 998244353

dpr = [0]*(2*10**5+1)
dpe = [0]*(2*10**5+1)

dpr[1] = 1
dpr[2] = 1
dpe[1] = 1
dpe[2] = 3

for i in range(3,2*10**5+1):
    dpr[i] = (dpr[i-1]+dpr[i-2])%mod
    dpe[i] = (dpe[i-1]+dpe[i-2])%mod
    
for _ in range(q):
    n = int(input())
    ans = 5*dpr[n]**2%mod-dpe[n]**2%mod
    print(ans%mod)
0