結果

問題 No.2600 Avator Height
ユーザー timitimi
提出日時 2024-01-12 21:26:26
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 509 ms / 2,000 ms
コード長 233 bytes
コンパイル時間 260 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 105,088 KB
最終ジャッジ日時 2024-09-27 21:09:31
合計ジャッジ時間 14,730 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 69 ms
89,472 KB
testcase_01 AC 481 ms
104,448 KB
testcase_02 AC 469 ms
104,576 KB
testcase_03 AC 471 ms
104,496 KB
testcase_04 AC 495 ms
104,968 KB
testcase_05 AC 482 ms
104,704 KB
testcase_06 AC 509 ms
104,380 KB
testcase_07 AC 502 ms
104,560 KB
testcase_08 AC 475 ms
104,772 KB
testcase_09 AC 489 ms
104,728 KB
testcase_10 AC 484 ms
104,568 KB
testcase_11 AC 469 ms
104,576 KB
testcase_12 AC 465 ms
104,512 KB
testcase_13 AC 503 ms
104,960 KB
testcase_14 AC 491 ms
104,520 KB
testcase_15 AC 484 ms
104,704 KB
testcase_16 AC 488 ms
104,688 KB
testcase_17 AC 470 ms
104,960 KB
testcase_18 AC 469 ms
104,724 KB
testcase_19 AC 480 ms
104,812 KB
testcase_20 AC 488 ms
104,372 KB
testcase_21 AC 503 ms
104,704 KB
testcase_22 AC 487 ms
104,820 KB
testcase_23 AC 493 ms
105,088 KB
testcase_24 AC 441 ms
104,640 KB
testcase_25 AC 446 ms
104,576 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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