結果

問題 No.2600 Avator Height
ユーザー 66
提出日時 2024-01-27 02:44:39
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 645 ms / 2,000 ms
コード長 456 bytes
コンパイル時間 97 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 31,632 KB
最終ジャッジ日時 2024-09-28 09:29:46
合計ジャッジ時間 19,274 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 186 ms
31,360 KB
testcase_01 AC 622 ms
31,380 KB
testcase_02 AC 616 ms
31,252 KB
testcase_03 AC 600 ms
31,252 KB
testcase_04 AC 587 ms
31,380 KB
testcase_05 AC 626 ms
31,376 KB
testcase_06 AC 598 ms
31,380 KB
testcase_07 AC 604 ms
31,380 KB
testcase_08 AC 621 ms
31,504 KB
testcase_09 AC 590 ms
31,376 KB
testcase_10 AC 599 ms
31,376 KB
testcase_11 AC 602 ms
31,248 KB
testcase_12 AC 607 ms
31,376 KB
testcase_13 AC 616 ms
31,504 KB
testcase_14 AC 626 ms
31,508 KB
testcase_15 AC 635 ms
31,380 KB
testcase_16 AC 597 ms
31,376 KB
testcase_17 AC 602 ms
31,380 KB
testcase_18 AC 596 ms
31,380 KB
testcase_19 AC 598 ms
31,504 KB
testcase_20 AC 599 ms
31,384 KB
testcase_21 AC 604 ms
31,252 KB
testcase_22 AC 645 ms
31,380 KB
testcase_23 AC 615 ms
31,248 KB
testcase_24 AC 491 ms
31,632 KB
testcase_25 AC 544 ms
31,380 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = lambda :sys.stdin.readline().rstrip()
ii = lambda: int(input())
mi = lambda: map(int, input().split())
ms = lambda: map(str, input().split())
mf = lambda: map(float, input().split())
li = lambda: list(mi())

Q = ii()
R = [1, 1]
E = [1, 3]
for i in range(1<<18):
    R.append((R[-1] + R[-2])%998244353)
    E.append((E[-1] + E[-2])%998244353)

for i in range(Q):
    N = ii()
    print((5 * R[N-1] * R[N-1] - E[N-1] * E[N-1])%998244353)

0