結果
問題 | No.658 テトラナッチ数列 Hard |
ユーザー | posaune-0xa0 |
提出日時 | 2018-04-04 15:37:45 |
言語 | C (gcc 12.3.0) |
結果 |
RE
|
実行時間 | - |
コード長 | 526 bytes |
コンパイル時間 | 236 ms |
コンパイル使用メモリ | 30,464 KB |
実行使用メモリ | 40,968 KB |
最終ジャッジ日時 | 2024-06-26 08:49:38 |
合計ジャッジ時間 | 2,049 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
6,812 KB |
testcase_01 | AC | 1 ms
6,940 KB |
testcase_02 | RE | - |
testcase_03 | AC | 2 ms
6,944 KB |
testcase_04 | AC | 10 ms
6,944 KB |
testcase_05 | AC | 59 ms
40,968 KB |
testcase_06 | RE | - |
testcase_07 | RE | - |
testcase_08 | RE | - |
testcase_09 | RE | - |
testcase_10 | RE | - |
ソースコード
#include <stdio.h> #define MOD 17 int main(void) { int Q; long long int i, j, k, l; scanf("%d", &Q); long long int data[Q]; for(i=0; i<Q; i++) scanf("%lld", &data[i]); long long int max=0; for(j=0; j<Q; j++) max = ((data[j]>max) ? data[j] : max); int dp[max]; dp[0] = dp[1] = dp[2] = 0; dp[3] = 1; for(k=4; k < max; k++) dp[k] = (dp[k-1] + dp[k-2] + dp[k-3] + dp[k-4])%MOD; for(l=0; l<Q; l++) printf("%d\n", dp[data[l]-1]); return 0; }