結果

問題 No.657 テトラナッチ数列 Easy
ユーザー rogi52rogi52
提出日時 2022-09-28 19:02:53
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 10 ms / 2,000 ms
コード長 482 bytes
コンパイル時間 2,434 ms
コンパイル使用メモリ 200,696 KB
実行使用メモリ 7,228 KB
最終ジャッジ日時 2024-06-02 01:38:03
合計ジャッジ時間 2,736 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 6 ms
7,040 KB
testcase_01 AC 7 ms
7,168 KB
testcase_02 AC 7 ms
7,020 KB
testcase_03 AC 7 ms
7,060 KB
testcase_04 AC 7 ms
7,140 KB
testcase_05 AC 8 ms
7,160 KB
testcase_06 AC 7 ms
7,180 KB
testcase_07 AC 7 ms
7,228 KB
testcase_08 AC 8 ms
7,040 KB
testcase_09 AC 10 ms
7,156 KB
testcase_10 AC 9 ms
7,128 KB
testcase_11 AC 8 ms
7,136 KB
testcase_12 AC 9 ms
7,056 KB
testcase_13 AC 9 ms
7,168 KB
testcase_14 AC 9 ms
7,144 KB
testcase_15 AC 8 ms
7,060 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#define rep(i,n) for(int i = 0; i < (n); i++)
using namespace std;
typedef long long ll;

int main(){
    cin.tie(0);
    ios::sync_with_stdio(0);
    
    int MAX_N = 1010101;
    vector<int> dp(MAX_N + 1, 0);
    dp[1] = 0, dp[2] = 0, dp[3] = 0, dp[4] = 1;
    for(int i = 5; i <= MAX_N; i++) dp[i] = (dp[i - 1] + dp[i - 2] + dp[i - 3] + dp[i - 4]) % 17;

    int Q; cin >> Q;
    rep(_,Q) {
        int n; cin >> n;
        cout << dp[n] << "\n";
    }
}
0