結果

問題 No.657 テトラナッチ数列 Easy
ユーザー SSRSSSRS
提出日時 2020-11-14 11:27:17
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 27 ms / 2,000 ms
コード長 346 bytes
コンパイル時間 2,224 ms
コンパイル使用メモリ 168,384 KB
実行使用メモリ 7,256 KB
最終ジャッジ日時 2024-07-22 22:46:39
合計ジャッジ時間 3,183 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 8 ms
7,168 KB
testcase_01 AC 9 ms
7,124 KB
testcase_02 AC 9 ms
7,168 KB
testcase_03 AC 9 ms
7,080 KB
testcase_04 AC 8 ms
7,104 KB
testcase_05 AC 23 ms
7,096 KB
testcase_06 AC 9 ms
7,168 KB
testcase_07 AC 8 ms
7,256 KB
testcase_08 AC 9 ms
6,968 KB
testcase_09 AC 24 ms
7,188 KB
testcase_10 AC 25 ms
7,172 KB
testcase_11 AC 24 ms
7,176 KB
testcase_12 AC 25 ms
7,176 KB
testcase_13 AC 25 ms
7,088 KB
testcase_14 AC 26 ms
7,116 KB
testcase_15 AC 27 ms
7,120 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
int main(){
  vector<int> T(1000000);
  T[0] = 0;
  T[1] = 0;
  T[2] = 0;
  T[3] = 1;
  for (int i = 4; i < 1000000; i++){
    T[i] = (T[i - 1] + T[i - 2] + T[i - 3] + T[i - 4]) % 17;
  }
  int Q;
  cin >> Q;
  for (int i = 0; i < Q; i++){
    int n;
    cin >> n;
    cout << T[n - 1] << endl;
  }
}
0