結果

問題 No.657 テトラナッチ数列 Easy
ユーザー kekenxkekenx
提出日時 2020-02-02 15:43:05
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 23 ms / 2,000 ms
コード長 361 bytes
コンパイル時間 1,331 ms
コンパイル使用メモリ 165,520 KB
実行使用メモリ 7,532 KB
最終ジャッジ日時 2024-09-18 20:50:35
合計ジャッジ時間 2,259 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 8 ms
7,368 KB
testcase_01 AC 8 ms
7,364 KB
testcase_02 AC 7 ms
7,316 KB
testcase_03 AC 7 ms
7,368 KB
testcase_04 AC 7 ms
7,384 KB
testcase_05 AC 19 ms
7,316 KB
testcase_06 AC 8 ms
7,376 KB
testcase_07 AC 7 ms
7,396 KB
testcase_08 AC 7 ms
7,392 KB
testcase_09 AC 23 ms
7,436 KB
testcase_10 AC 21 ms
7,492 KB
testcase_11 AC 22 ms
7,532 KB
testcase_12 AC 22 ms
7,384 KB
testcase_13 AC 23 ms
7,352 KB
testcase_14 AC 22 ms
7,416 KB
testcase_15 AC 21 ms
7,400 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

using namespace std;
int dp[1000006];

int main() {
  int q;
  cin >> q;

  dp[0] = 0;
  dp[1] = 0;
  dp[2] = 0;
  dp[3] = 1;

  for (int i = 4; i < 1000005; ++i) {
    dp[i] = dp[i - 1] + dp[i - 2] + dp[i - 3] + dp[i - 4];
    dp[i] %= 17;
  }
  while (q--) {
    int n;
    cin >> n;
    cout << dp[n - 1] << endl;
  }
  return 0;
}
0