結果

問題 No.2600 Avator Height
ユーザー lloyzlloyz
提出日時 2024-01-14 18:51:17
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 524 ms / 2,000 ms
コード長 298 bytes
コンパイル時間 400 ms
コンパイル使用メモリ 82,280 KB
実行使用メモリ 105,044 KB
最終ジャッジ日時 2024-09-28 02:03:36
合計ジャッジ時間 15,522 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 64 ms
89,216 KB
testcase_01 AC 489 ms
104,576 KB
testcase_02 AC 500 ms
104,704 KB
testcase_03 AC 494 ms
105,044 KB
testcase_04 AC 489 ms
104,576 KB
testcase_05 AC 501 ms
104,576 KB
testcase_06 AC 501 ms
104,576 KB
testcase_07 AC 498 ms
104,576 KB
testcase_08 AC 490 ms
104,832 KB
testcase_09 AC 492 ms
104,576 KB
testcase_10 AC 510 ms
104,576 KB
testcase_11 AC 499 ms
104,576 KB
testcase_12 AC 497 ms
104,448 KB
testcase_13 AC 494 ms
104,832 KB
testcase_14 AC 519 ms
104,632 KB
testcase_15 AC 519 ms
104,576 KB
testcase_16 AC 507 ms
104,880 KB
testcase_17 AC 524 ms
104,960 KB
testcase_18 AC 497 ms
104,832 KB
testcase_19 AC 491 ms
104,576 KB
testcase_20 AC 500 ms
104,628 KB
testcase_21 AC 497 ms
104,704 KB
testcase_22 AC 512 ms
104,576 KB
testcase_23 AC 508 ms
104,576 KB
testcase_24 AC 452 ms
104,576 KB
testcase_25 AC 503 ms
104,576 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

R = [0, 1, 1]
E = [0, 1, 3]
mod = 998244353
for i in range(2, 2 * 10**5 + 1):
    R.append((R[-1] + R[-2]) % mod)
    E.append((E[-1] + E[-2]) % mod)
for _ in range(int(input())):
    n = int(input())
    res = 5 * pow(R[n], 2, mod) % mod
    res -= pow(E[n], 2, mod)
    res %= mod
    print(res)
0