結果

問題 No.657 テトラナッチ数列 Easy
ユーザー Kutimoti_TKutimoti_T
提出日時 2018-03-09 22:43:05
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 25 ms / 2,000 ms
コード長 601 bytes
コンパイル時間 903 ms
コンパイル使用メモリ 72,088 KB
実行使用メモリ 7,440 KB
最終ジャッジ日時 2024-10-10 06:49:51
合計ジャッジ時間 1,768 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 8 ms
7,248 KB
testcase_01 AC 8 ms
7,260 KB
testcase_02 AC 7 ms
7,368 KB
testcase_03 AC 8 ms
7,312 KB
testcase_04 AC 7 ms
7,248 KB
testcase_05 AC 22 ms
7,380 KB
testcase_06 AC 8 ms
7,236 KB
testcase_07 AC 8 ms
7,440 KB
testcase_08 AC 8 ms
7,280 KB
testcase_09 AC 24 ms
7,248 KB
testcase_10 AC 24 ms
7,296 KB
testcase_11 AC 24 ms
7,296 KB
testcase_12 AC 25 ms
7,388 KB
testcase_13 AC 25 ms
7,236 KB
testcase_14 AC 25 ms
7,288 KB
testcase_15 AC 25 ms
7,296 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <string>
#include <vector>
#include <algorithm>
#include <queue>
#include <set>
#include <map>
#include <string.h>
#include <cmath>

using namespace std;
typedef long long i64;
typedef long double ld;
typedef pair<i64,i64> P;
#define rep(i,s,e) for(int (i) = (s);(i) <= (e);++(i))

int q;

int dp[1010101];

int main()
{
	dp[1] = dp[2] = dp[3] = 0;
	dp[4] = 1;
	int sum = 1;
	for(int i = 5;i <= 1010100;i++)
	{
		dp[i] = sum;
		(sum += 17 + dp[i] - dp[i - 4]) %= 17;
	}
	cin >> q;
	for(int i = 0;i < q;i++)
	{
		int a;
		cin >> a;
		cout << dp[a] << endl;
	}
	return 0;
}
0