結果

問題 No.2600 Avator Height
ユーザー shobonvipshobonvip
提出日時 2024-01-13 17:24:33
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 581 ms / 2,000 ms
コード長 236 bytes
コンパイル時間 148 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 118,388 KB
最終ジャッジ日時 2024-09-28 01:35:54
合計ジャッジ時間 15,178 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 87 ms
102,400 KB
testcase_01 AC 504 ms
118,144 KB
testcase_02 AC 515 ms
117,760 KB
testcase_03 AC 500 ms
117,760 KB
testcase_04 AC 495 ms
118,016 KB
testcase_05 AC 501 ms
118,016 KB
testcase_06 AC 523 ms
117,760 KB
testcase_07 AC 515 ms
117,888 KB
testcase_08 AC 505 ms
118,144 KB
testcase_09 AC 504 ms
117,936 KB
testcase_10 AC 526 ms
118,388 KB
testcase_11 AC 499 ms
118,016 KB
testcase_12 AC 500 ms
117,888 KB
testcase_13 AC 503 ms
118,184 KB
testcase_14 AC 492 ms
117,832 KB
testcase_15 AC 480 ms
117,760 KB
testcase_16 AC 486 ms
118,272 KB
testcase_17 AC 482 ms
118,052 KB
testcase_18 AC 486 ms
118,016 KB
testcase_19 AC 497 ms
117,760 KB
testcase_20 AC 499 ms
117,888 KB
testcase_21 AC 499 ms
117,888 KB
testcase_22 AC 581 ms
118,016 KB
testcase_23 AC 484 ms
117,888 KB
testcase_24 AC 453 ms
117,760 KB
testcase_25 AC 470 ms
117,888 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

mod = 998244353

r = [0, 1, 1]
e = [0, 1, 3]

for i in range(300000):
	r.append((r[-1] + r[-2]) % mod)
	e.append((e[-1] + e[-2]) % mod)

q = int(input())
for _ in range(q):
	n = int(input())
	print((5 * r[n] * r[n] - e[n] * e[n]) % mod)
0