結果

問題 No.2600 Avator Height
ユーザー ああいいああいい
提出日時 2024-01-13 17:49:07
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 508 ms / 2,000 ms
コード長 275 bytes
コンパイル時間 333 ms
コンパイル使用メモリ 82,256 KB
実行使用メモリ 79,528 KB
最終ジャッジ日時 2024-09-28 01:38:21
合計ジャッジ時間 14,780 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 45 ms
62,484 KB
testcase_01 AC 502 ms
79,496 KB
testcase_02 AC 491 ms
79,268 KB
testcase_03 AC 491 ms
79,092 KB
testcase_04 AC 487 ms
79,456 KB
testcase_05 AC 482 ms
79,408 KB
testcase_06 AC 489 ms
79,280 KB
testcase_07 AC 504 ms
79,476 KB
testcase_08 AC 481 ms
79,388 KB
testcase_09 AC 490 ms
79,340 KB
testcase_10 AC 479 ms
79,528 KB
testcase_11 AC 468 ms
79,288 KB
testcase_12 AC 502 ms
79,168 KB
testcase_13 AC 473 ms
79,108 KB
testcase_14 AC 489 ms
79,104 KB
testcase_15 AC 471 ms
79,200 KB
testcase_16 AC 497 ms
79,472 KB
testcase_17 AC 483 ms
79,256 KB
testcase_18 AC 508 ms
79,232 KB
testcase_19 AC 484 ms
79,336 KB
testcase_20 AC 494 ms
79,440 KB
testcase_21 AC 498 ms
79,132 KB
testcase_22 AC 474 ms
79,232 KB
testcase_23 AC 477 ms
79,360 KB
testcase_24 AC 417 ms
79,196 KB
testcase_25 AC 458 ms
79,488 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

Q = int(input())
P = 998244353
C = 2 * 10 ** 5 + 5
r = [0] * C
e = [0] * C
r[0] = 1
r[1] = 1
e[0] = 1
e[1] = 3
for i in range(2,C):
	r[i] = (r[i-1] + r[i-2]) % P
	e[i] = (e[i-1] + e[i-2]) % P
for _ in range(Q):
	n = int(input())
	t = 5 * r[n-1] ** 2 - e[n-1] ** 2
	print(t%P)
0