結果

問題 No.2600 Avator Height
ユーザー vwxyzvwxyz
提出日時 2024-07-17 08:15:32
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 1,622 ms / 2,000 ms
コード長 226 bytes
コンパイル時間 313 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 26,620 KB
最終ジャッジ日時 2024-07-17 08:16:19
合計ジャッジ時間 43,307 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 173 ms
26,368 KB
testcase_01 AC 1,521 ms
26,364 KB
testcase_02 AC 1,574 ms
26,492 KB
testcase_03 AC 1,556 ms
26,364 KB
testcase_04 AC 1,551 ms
26,492 KB
testcase_05 AC 1,605 ms
26,492 KB
testcase_06 AC 1,530 ms
26,368 KB
testcase_07 AC 1,559 ms
26,620 KB
testcase_08 AC 1,610 ms
26,492 KB
testcase_09 AC 1,587 ms
26,364 KB
testcase_10 AC 1,524 ms
26,492 KB
testcase_11 AC 1,543 ms
26,364 KB
testcase_12 AC 1,530 ms
26,368 KB
testcase_13 AC 1,544 ms
26,492 KB
testcase_14 AC 1,561 ms
26,236 KB
testcase_15 AC 1,559 ms
26,496 KB
testcase_16 AC 1,585 ms
26,236 KB
testcase_17 AC 1,570 ms
26,364 KB
testcase_18 AC 1,567 ms
26,236 KB
testcase_19 AC 1,578 ms
26,240 KB
testcase_20 AC 1,608 ms
26,364 KB
testcase_21 AC 1,579 ms
26,492 KB
testcase_22 AC 1,609 ms
26,492 KB
testcase_23 AC 1,622 ms
26,492 KB
testcase_24 AC 1,310 ms
26,492 KB
testcase_25 AC 1,413 ms
26,364 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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