結果

問題 No.2600 Avator Height
ユーザー detteiuudetteiuu
提出日時 2024-10-03 17:48:58
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 239 ms / 2,000 ms
コード長 248 bytes
コンパイル時間 346 ms
コンパイル使用メモリ 82,544 KB
実行使用メモリ 105,888 KB
最終ジャッジ日時 2024-10-03 17:49:09
合計ジャッジ時間 9,921 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 63 ms
88,144 KB
testcase_01 AC 234 ms
105,520 KB
testcase_02 AC 205 ms
105,248 KB
testcase_03 AC 204 ms
105,488 KB
testcase_04 AC 202 ms
105,224 KB
testcase_05 AC 208 ms
105,624 KB
testcase_06 AC 239 ms
105,504 KB
testcase_07 AC 207 ms
105,456 KB
testcase_08 AC 206 ms
105,460 KB
testcase_09 AC 212 ms
105,236 KB
testcase_10 AC 209 ms
105,332 KB
testcase_11 AC 206 ms
105,388 KB
testcase_12 AC 216 ms
105,332 KB
testcase_13 AC 208 ms
105,484 KB
testcase_14 AC 207 ms
105,432 KB
testcase_15 AC 235 ms
105,464 KB
testcase_16 AC 209 ms
105,628 KB
testcase_17 AC 207 ms
105,200 KB
testcase_18 AC 207 ms
105,372 KB
testcase_19 AC 203 ms
105,228 KB
testcase_20 AC 205 ms
105,564 KB
testcase_21 AC 199 ms
105,248 KB
testcase_22 AC 203 ms
105,532 KB
testcase_23 AC 203 ms
105,692 KB
testcase_24 AC 177 ms
105,888 KB
testcase_25 AC 186 ms
105,360 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

Q = int(input())
N = [int(input()) for _ in range(Q)]

R = [1, 1]
E = [1, 3]
MOD = 998244353
for _ in range(10**5*2):
    R.append((R[-1]+R[-2])%MOD)
    E.append((E[-1]+E[-2])%MOD)

for n in N:
    n -= 1
    print((5*R[n]**2%MOD-E[n]**2%MOD)%MOD)
0