結果

問題 No.657 テトラナッチ数列 Easy
ユーザー sggkshiosggkshio
提出日時 2018-12-26 01:14:27
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 25 ms / 2,000 ms
コード長 696 bytes
コンパイル時間 1,091 ms
コンパイル使用メモリ 81,508 KB
実行使用メモリ 11,264 KB
最終ジャッジ日時 2024-10-01 14:39:19
合計ジャッジ時間 1,954 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 12 ms
11,136 KB
testcase_01 AC 10 ms
11,264 KB
testcase_02 AC 10 ms
11,008 KB
testcase_03 AC 10 ms
11,264 KB
testcase_04 AC 10 ms
11,264 KB
testcase_05 AC 23 ms
11,136 KB
testcase_06 AC 10 ms
11,236 KB
testcase_07 AC 10 ms
11,024 KB
testcase_08 AC 10 ms
11,136 KB
testcase_09 AC 24 ms
11,264 KB
testcase_10 AC 24 ms
11,136 KB
testcase_11 AC 24 ms
10,988 KB
testcase_12 AC 24 ms
11,236 KB
testcase_13 AC 24 ms
11,264 KB
testcase_14 AC 25 ms
11,136 KB
testcase_15 AC 24 ms
11,136 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#define _USE_MATH_DEFINES
#define _CRT_SECURE_NO_WARNINGS
#include<stdio.h>
#include<string>
#include<iostream>
#include<iostream>
#include<cctype>
#include<cstdio>
#include<vector>
#include<stack>
#include<queue>
#include <algorithm>
#include<math.h>
#include<set>
#include<map>
#include <sstream>
#include<iomanip>
#include <ctype.h>
using namespace std;

//#include<bits/stdc++.h>
long long int t[1000005];
int main() {
	t[0] = 0, t[1] = 0, t[2] = 0, t[3] = 0, t[4] = 1;
	for (int i = 5; i <= 1000000; i++) {
		t[i] = t[i - 1] + t[i - 2] + t[i - 3] + t[i - 4];
		t[i] %= 17;
	}

	int n;
	cin >> n;
	for (int i = 0; i < n; i++) {
		int q;
		cin >> q;
		cout << t[q]  << endl;
	}
	

	return 0;
}
0