結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 8 ms
11,192 KB
testcase_01 AC 7 ms
11,092 KB
testcase_02 AC 7 ms
11,100 KB
testcase_03 AC 7 ms
11,084 KB
testcase_04 AC 7 ms
11,116 KB
testcase_05 AC 20 ms
11,148 KB
testcase_06 AC 7 ms
11,104 KB
testcase_07 AC 7 ms
10,968 KB
testcase_08 AC 6 ms
11,004 KB
testcase_09 AC 21 ms
11,120 KB
testcase_10 AC 21 ms
11,032 KB
testcase_11 AC 20 ms
11,024 KB
testcase_12 AC 21 ms
11,120 KB
testcase_13 AC 22 ms
11,092 KB
testcase_14 AC 27 ms
11,036 KB
testcase_15 AC 22 ms
10,968 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