結果

問題 No.657 テトラナッチ数列 Easy
ユーザー ryoissyryoissy
提出日時 2018-03-02 22:24:42
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 12 ms / 2,000 ms
コード長 347 bytes
コンパイル時間 1,348 ms
コンパイル使用メモリ 158,888 KB
実行使用メモリ 7,624 KB
最終ジャッジ日時 2024-06-13 03:13:19
合計ジャッジ時間 1,916 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 9 ms
7,532 KB
testcase_01 AC 9 ms
7,564 KB
testcase_02 AC 9 ms
7,552 KB
testcase_03 AC 10 ms
7,492 KB
testcase_04 AC 9 ms
7,316 KB
testcase_05 AC 11 ms
7,552 KB
testcase_06 AC 9 ms
7,476 KB
testcase_07 AC 10 ms
7,492 KB
testcase_08 AC 9 ms
7,600 KB
testcase_09 AC 11 ms
7,552 KB
testcase_10 AC 11 ms
7,624 KB
testcase_11 AC 12 ms
7,552 KB
testcase_12 AC 12 ms
7,460 KB
testcase_13 AC 12 ms
7,524 KB
testcase_14 AC 12 ms
7,552 KB
testcase_15 AC 12 ms
7,552 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp: In function ‘int main()’:
main.cpp:15:14: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
   15 |         scanf("%d",&q);
      |         ~~~~~^~~~~~~~~
main.cpp:18:22: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
   18 |                 scanf("%d",&n);
      |                 ~~~~~^~~~~~~~~

ソースコード

diff #

#include <bits/stdc++.h>
#define MOD 1000000007LL
using namespace std;
typedef long long ll;
typedef pair<int,int> P;

int q;
int t[1000001];

int main(void){
	t[4]=1;
	for(int i=5;i<=1000000;i++){
		t[i]=(t[i-1]+t[i-2]+t[i-3]+t[i-4])%17;
	}
	scanf("%d",&q);
	for(int i=0;i<q;i++){
		int n;
		scanf("%d",&n);
		printf("%d\n",t[n]);
	}
	return 0;
}
0