結果

問題 No.657 テトラナッチ数列 Easy
ユーザー Hydrogen332Hydrogen332
提出日時 2024-12-02 00:14:19
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 12 ms / 2,000 ms
コード長 527 bytes
コンパイル時間 3,645 ms
コンパイル使用メモリ 244,396 KB
実行使用メモリ 7,168 KB
最終ジャッジ日時 2024-12-02 00:14:24
合計ジャッジ時間 4,946 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
using ll = long long;
#define rep(i, s, e) for (int i = (int)(s); i < (int)(e); ++i)
#define all(a) (a).begin(),(a).end()

int main() {
    cin.tie(nullptr);
    ios_base::sync_with_stdio(false);
    
    vector<int> T(1e6 + 10);
    T[1] = T[2] = T[3] = 0;
    T[4] = 1;
    rep(i, 5, 1e6 + 10) T[i] = (T[i - 1] + T[i - 2] + T[i - 3] + T[i - 4]) % 17;
    
    int Q;
    cin >> Q;
    
    rep(query, 0, Q) {
        int N;
        cin >> N;
        cout << T[N] << '\n';
    }
}
0