結果

問題 No.657 テトラナッチ数列 Easy
ユーザー 0x19f0x19f
提出日時 2018-03-02 22:27:30
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 27 ms / 2,000 ms
コード長 399 bytes
コンパイル時間 1,725 ms
コンパイル使用メモリ 168,216 KB
実行使用メモリ 11,264 KB
最終ジャッジ日時 2024-06-13 03:29:24
合計ジャッジ時間 2,595 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 9 ms
11,080 KB
testcase_01 AC 10 ms
10,992 KB
testcase_02 AC 10 ms
11,136 KB
testcase_03 AC 10 ms
11,148 KB
testcase_04 AC 9 ms
10,996 KB
testcase_05 AC 24 ms
11,052 KB
testcase_06 AC 10 ms
11,008 KB
testcase_07 AC 10 ms
11,000 KB
testcase_08 AC 9 ms
11,008 KB
testcase_09 AC 24 ms
11,232 KB
testcase_10 AC 26 ms
11,136 KB
testcase_11 AC 25 ms
11,264 KB
testcase_12 AC 25 ms
11,108 KB
testcase_13 AC 27 ms
11,252 KB
testcase_14 AC 26 ms
11,136 KB
testcase_15 AC 27 ms
11,264 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#define REP(i, a, n) for(ll i = ((ll) a); i < ((ll) n); i++)
using namespace std;
typedef long long ll;

int main(void) {
  ll Q;
  cin >> Q;
  vector<ll> N(Q);
  REP(i, 0, Q) cin >> N[i];

  vector<ll> x(1000001);
  x[1] = x[2] = x[3] = 0;
  x[4] = 1;
  REP(i, 5, 1000000) x[i] = (x[i - 1] + x[i - 2] + x[i - 3] + x[i - 4]) % 17;

  REP(i, 0, Q) cout << x[N[i]] << endl;
}
0