結果

問題 No.2600 Avator Height
ユーザー H20H20
提出日時 2024-01-12 22:25:37
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 520 ms / 2,000 ms
コード長 220 bytes
コンパイル時間 186 ms
コンパイル使用メモリ 82,364 KB
実行使用メモリ 104,196 KB
最終ジャッジ日時 2024-09-27 22:57:09
合計ジャッジ時間 15,494 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 63 ms
88,796 KB
testcase_01 AC 511 ms
104,072 KB
testcase_02 AC 505 ms
103,944 KB
testcase_03 AC 507 ms
103,864 KB
testcase_04 AC 497 ms
104,064 KB
testcase_05 AC 517 ms
103,988 KB
testcase_06 AC 501 ms
103,588 KB
testcase_07 AC 505 ms
104,196 KB
testcase_08 AC 505 ms
104,068 KB
testcase_09 AC 507 ms
103,780 KB
testcase_10 AC 499 ms
103,632 KB
testcase_11 AC 520 ms
103,756 KB
testcase_12 AC 498 ms
103,920 KB
testcase_13 AC 507 ms
104,028 KB
testcase_14 AC 501 ms
103,712 KB
testcase_15 AC 504 ms
103,644 KB
testcase_16 AC 508 ms
103,796 KB
testcase_17 AC 505 ms
103,704 KB
testcase_18 AC 496 ms
103,856 KB
testcase_19 AC 503 ms
103,648 KB
testcase_20 AC 515 ms
103,996 KB
testcase_21 AC 513 ms
103,588 KB
testcase_22 AC 507 ms
103,640 KB
testcase_23 AC 501 ms
103,748 KB
testcase_24 AC 467 ms
103,656 KB
testcase_25 AC 482 ms
103,836 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

mod = 998244353
R = [1,1]
E = [1,3]
for _ in range(2*10**5):
    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-1]**2-E[N-1]**2)%mod)
0