結果

問題 No.2600 Avator Height
ユーザー titiatitia
提出日時 2024-01-12 21:26:11
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 1,332 ms / 2,000 ms
コード長 219 bytes
コンパイル時間 138 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 26,480 KB
最終ジャッジ日時 2024-09-27 21:11:24
合計ジャッジ時間 34,318 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 144 ms
26,348 KB
testcase_01 AC 1,318 ms
26,224 KB
testcase_02 AC 1,253 ms
26,352 KB
testcase_03 AC 1,285 ms
26,348 KB
testcase_04 AC 1,279 ms
26,356 KB
testcase_05 AC 1,287 ms
26,348 KB
testcase_06 AC 1,292 ms
26,220 KB
testcase_07 AC 1,282 ms
26,224 KB
testcase_08 AC 1,323 ms
26,352 KB
testcase_09 AC 1,251 ms
26,224 KB
testcase_10 AC 1,221 ms
26,348 KB
testcase_11 AC 1,271 ms
26,352 KB
testcase_12 AC 1,332 ms
26,348 KB
testcase_13 AC 1,313 ms
26,352 KB
testcase_14 AC 1,222 ms
26,356 KB
testcase_15 AC 1,266 ms
26,348 KB
testcase_16 AC 1,306 ms
26,224 KB
testcase_17 AC 1,261 ms
26,348 KB
testcase_18 AC 1,251 ms
26,480 KB
testcase_19 AC 1,284 ms
26,348 KB
testcase_20 AC 1,302 ms
26,352 KB
testcase_21 AC 1,250 ms
26,352 KB
testcase_22 AC 1,255 ms
26,476 KB
testcase_23 AC 1,310 ms
26,348 KB
testcase_24 AC 1,148 ms
26,480 KB
testcase_25 AC 1,220 ms
26,352 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

mod=998244353

R=[1,1,1]
E=[1,1,3]

for i in range(2*10**5):
    R.append((R[-1]+R[-2])%mod)
    E.append((E[-1]+E[-2])%mod)

Q=int(input())
for tests in range(Q):
    x=int(input())
    print((5*R[x]**2 - E[x]**2)%mod)
0