結果

問題 No.657 テトラナッチ数列 Easy
ユーザー aa
提出日時 2018-06-07 18:52:11
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 25 ms / 2,000 ms
コード長 1,729 bytes
コンパイル時間 727 ms
コンパイル使用メモリ 90,628 KB
実行使用メモリ 7,188 KB
最終ジャッジ日時 2023-09-12 23:08:23
合計ジャッジ時間 2,121 ms
ジャッジサーバーID
(参考情報)
judge13 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 8 ms
6,920 KB
testcase_01 AC 8 ms
6,872 KB
testcase_02 AC 7 ms
6,996 KB
testcase_03 AC 8 ms
7,188 KB
testcase_04 AC 7 ms
6,916 KB
testcase_05 AC 22 ms
7,032 KB
testcase_06 AC 7 ms
6,916 KB
testcase_07 AC 7 ms
6,924 KB
testcase_08 AC 7 ms
6,976 KB
testcase_09 AC 23 ms
6,916 KB
testcase_10 AC 23 ms
6,896 KB
testcase_11 AC 24 ms
6,976 KB
testcase_12 AC 24 ms
6,972 KB
testcase_13 AC 25 ms
6,936 KB
testcase_14 AC 25 ms
7,008 KB
testcase_15 AC 25 ms
7,024 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <cstdio>
#include <cstdlib>
#include <cstring>
#include <cmath>
#include <map>
#include <set>
#include <vector>
#include <stack>
#include <queue>
#include <bitset>
#include <algorithm>
#include <numeric>
#include <functional>
using namespace std;

#define Rep(b, e, i) for(int i = b; i <= e; i++)
#define Repr(e, b, i) for(int i = e; i >= b; i--)
#define rep(n, i) Rep(0, n-1, i)
#define repr(n, i) Repr(n-1, 0, i)
#define all(v) (v).begin(), (v).end()
#define pb(v) push_back(v)
#define uniq(v) (v).erase(unique(all(v)),(v).end())
#define bitcnt(x) __builtin_popcount(x)
#define fst first
#define snd second
#define Pqaz(T) priority_queue<T,vector<T>,greater<T>>
#define Pqza(T) priority_queue<T>
#define put(x) cout << x;
#define putsp(x) cout << x << ' ';
#define putln(x) cout << x << endl;
#define ENJYU std::ios::sync_with_stdio(false);std::cin.tie(0);

typedef long long ll;
typedef pair<ll, ll> llP;
typedef pair<int, int> intP;

//vector の中身を出力
template <class T>ostream &operator<<(ostream &o,const vector<T>&v)
{o<<"{";for(int i=0;i<(int)v.size();i++)o<<(i>0?", ":"")<<v[i];o<<"}";return o;}

const int MAX = 1000010;
const double PI = 3.14159265358979323846;
const double EPS = 1e-12;
const int INF = 1<<31-1;
const int MOD = 1000000007;

int dx4[4]={1,0,-1,0};
int dy4[4]={0,1,0,-1};
int dx8[8]={1,0,-1,1,-1,1,0,-1};
int dy8[8]={1,1,1,0,0,-1,-1,-1};

void solve(void){
	int Q;
	cin >> Q;

	vector <int> ts(MAX);
	ts[0] = ts[1] = ts[2] = 0;
	ts[3] = 1;
	rep(MAX-5, i) {
		ts[i+4] = ts[i] + ts[i+1] + ts[i+2] + ts[i+3];
		ts[i+4] %= 17;
	}

	while (Q--) {
		int n;
		cin >> n;
		putln(ts[n-1]);
	}
}

int main(void){
	solve();
	//cout << "yui(*-v・)yui" << endl;
	return 0;
}
0