結果

問題 No.657 テトラナッチ数列 Easy
ユーザー yansi819yansi819
提出日時 2024-05-15 08:26:53
言語 C++17
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 26 ms / 2,000 ms
コード長 427 bytes
コンパイル時間 4,378 ms
コンパイル使用メモリ 261,660 KB
実行使用メモリ 11,184 KB
最終ジャッジ日時 2024-12-20 10:12:01
合計ジャッジ時間 5,487 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 8 ms
11,112 KB
testcase_01 AC 8 ms
11,052 KB
testcase_02 AC 8 ms
11,124 KB
testcase_03 AC 8 ms
11,100 KB
testcase_04 AC 8 ms
11,004 KB
testcase_05 AC 23 ms
11,008 KB
testcase_06 AC 9 ms
11,096 KB
testcase_07 AC 8 ms
11,072 KB
testcase_08 AC 9 ms
11,184 KB
testcase_09 AC 24 ms
11,008 KB
testcase_10 AC 24 ms
11,084 KB
testcase_11 AC 25 ms
11,076 KB
testcase_12 AC 26 ms
11,172 KB
testcase_13 AC 25 ms
11,032 KB
testcase_14 AC 26 ms
11,024 KB
testcase_15 AC 25 ms
11,028 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#include <atcoder/all>
using namespace std;
using namespace atcoder;
using ll = long long;
using ld = long double;
using mint = modint998244353;

int main() {
  vector<ll> T(1000001, 0);
  T[4] = 1;
  for (int i = 5; i <= 1000000; i++) {
    T[i] = (T[i - 4] + T[i - 3] + T[i - 2] + T[i - 1]) % 17;
  }
  int Q; cin >> Q;
  while (Q--) {
    int n; cin >> n;
    cout << T[n] << endl;
  }
  return 0;
}
0