結果

問題 No.657 テトラナッチ数列 Easy
ユーザー finefine
提出日時 2018-03-02 22:25:12
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 23 ms / 2,000 ms
コード長 461 bytes
コンパイル時間 2,055 ms
コンパイル使用メモリ 167,124 KB
実行使用メモリ 7,404 KB
最終ジャッジ日時 2024-06-13 03:17:49
合計ジャッジ時間 2,681 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 8 ms
7,232 KB
testcase_01 AC 9 ms
7,340 KB
testcase_02 AC 8 ms
7,248 KB
testcase_03 AC 8 ms
7,240 KB
testcase_04 AC 8 ms
7,376 KB
testcase_05 AC 22 ms
7,304 KB
testcase_06 AC 8 ms
7,380 KB
testcase_07 AC 8 ms
7,404 KB
testcase_08 AC 8 ms
7,340 KB
testcase_09 AC 22 ms
7,380 KB
testcase_10 AC 22 ms
7,232 KB
testcase_11 AC 23 ms
7,348 KB
testcase_12 AC 23 ms
7,396 KB
testcase_13 AC 23 ms
7,344 KB
testcase_14 AC 23 ms
7,388 KB
testcase_15 AC 23 ms
7,380 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

using namespace std;

using ll = long long;

const int MOD = 17;

int dp[1000005];

int main() {
    cin.tie(0);
    ios::sync_with_stdio(false);
    dp[3] = 1;
    for (int i = 4; i < 1000000; i++) {
        dp[i] = (dp[i - 1] + dp[i - 2] + dp[i - 3] + dp[i - 4]) % MOD;
    }
    int q;
    cin >> q;
    for (int i = 0; i < q; i++) {
        int n;
        cin >> n;
        n--;
        cout << dp[n] << endl;
    }
    return 0;
}
0