結果

問題 No.2600 Avator Height
ユーザー Carpenters-CatCarpenters-Cat
提出日時 2024-01-12 21:35:39
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 572 ms / 2,000 ms
コード長 225 bytes
コンパイル時間 392 ms
コンパイル使用メモリ 82,056 KB
実行使用メモリ 103,936 KB
最終ジャッジ日時 2024-09-27 21:30:08
合計ジャッジ時間 16,690 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 70 ms
87,808 KB
testcase_01 AC 541 ms
103,804 KB
testcase_02 AC 540 ms
103,808 KB
testcase_03 AC 547 ms
103,936 KB
testcase_04 AC 545 ms
103,532 KB
testcase_05 AC 549 ms
103,772 KB
testcase_06 AC 546 ms
103,936 KB
testcase_07 AC 531 ms
103,808 KB
testcase_08 AC 547 ms
103,624 KB
testcase_09 AC 552 ms
103,840 KB
testcase_10 AC 534 ms
103,784 KB
testcase_11 AC 572 ms
103,680 KB
testcase_12 AC 541 ms
103,552 KB
testcase_13 AC 533 ms
103,680 KB
testcase_14 AC 524 ms
103,776 KB
testcase_15 AC 539 ms
103,420 KB
testcase_16 AC 565 ms
103,808 KB
testcase_17 AC 556 ms
103,424 KB
testcase_18 AC 539 ms
103,552 KB
testcase_19 AC 551 ms
103,424 KB
testcase_20 AC 542 ms
103,524 KB
testcase_21 AC 528 ms
103,680 KB
testcase_22 AC 532 ms
103,680 KB
testcase_23 AC 540 ms
103,832 KB
testcase_24 AC 529 ms
103,424 KB
testcase_25 AC 508 ms
103,680 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

m = 998244353
A = [1, 1]
B = [1, 3]
for _ in range(200020) :
	A.append((A[-1] + A[-2]) % m)
	B.append((B[-1] + B[-2]) % m)
Q = int(input())
for _ in range(Q) :
	n = int(input())
	n -= 1
	print((5 * A[n] ** 2 - B[n] ** 2) % m)
0