結果

問題 No.2600 Avator Height
ユーザー tobbietobbie
提出日時 2024-05-06 11:54:42
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 374 ms / 2,000 ms
コード長 562 bytes
コンパイル時間 1,751 ms
コンパイル使用メモリ 167,436 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-05-06 11:54:56
合計ジャッジ時間 13,804 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 3 ms
5,248 KB
testcase_01 AC 355 ms
5,376 KB
testcase_02 AC 344 ms
5,376 KB
testcase_03 AC 341 ms
5,376 KB
testcase_04 AC 357 ms
5,376 KB
testcase_05 AC 341 ms
5,376 KB
testcase_06 AC 349 ms
5,376 KB
testcase_07 AC 354 ms
5,376 KB
testcase_08 AC 350 ms
5,376 KB
testcase_09 AC 347 ms
5,376 KB
testcase_10 AC 374 ms
5,376 KB
testcase_11 AC 347 ms
5,376 KB
testcase_12 AC 356 ms
5,376 KB
testcase_13 AC 355 ms
5,376 KB
testcase_14 AC 345 ms
5,376 KB
testcase_15 AC 350 ms
5,376 KB
testcase_16 AC 363 ms
5,376 KB
testcase_17 AC 348 ms
5,376 KB
testcase_18 AC 348 ms
5,376 KB
testcase_19 AC 367 ms
5,376 KB
testcase_20 AC 350 ms
5,376 KB
testcase_21 AC 350 ms
5,376 KB
testcase_22 AC 355 ms
5,376 KB
testcase_23 AC 346 ms
5,376 KB
testcase_24 AC 299 ms
5,376 KB
testcase_25 AC 341 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;

#define rep(i, n) for (int i = 0; i < (int)(n); i++)
#define MOD 998244353
using ll = long long int;

int main() {
  int ni = 2e5;
  vector<int> R(ni, 1);
  vector<int> E(ni, 1); E[1] = 3;
  rep(i, ni-2) {
    R[i+2] = (R[i] + R[i+1]) % MOD;
    E[i+2] = (E[i] + E[i+1]) % MOD;
  }
  int Q;
  cin >> Q;
  rep(i, Q) {
    int Ni;
    cin >> Ni;
    int ans = ((ll)R[Ni-1] * (ll)R[Ni-1] * 5) % MOD;
    ans -= ((ll)E[Ni-1] * (ll)E[Ni-1]) % MOD;
    if (ans < 0) ans += MOD;
    cout << ans << endl;
  }
  return 0;
}
0