結果

問題 No.657 テトラナッチ数列 Easy
ユーザー かぼちゃかぼちゃ
提出日時 2018-03-02 22:57:25
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 30 ms / 2,000 ms
コード長 415 bytes
コンパイル時間 1,031 ms
コンパイル使用メモリ 67,388 KB
実行使用メモリ 7,948 KB
最終ジャッジ日時 2023-09-04 05:52:02
合計ジャッジ時間 2,048 ms
ジャッジサーバーID
(参考情報)
judge12 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
4,376 KB
testcase_01 AC 1 ms
4,376 KB
testcase_02 AC 1 ms
4,376 KB
testcase_03 AC 2 ms
4,376 KB
testcase_04 AC 12 ms
7,412 KB
testcase_05 AC 16 ms
4,380 KB
testcase_06 AC 2 ms
4,380 KB
testcase_07 AC 2 ms
4,380 KB
testcase_08 AC 12 ms
7,948 KB
testcase_09 AC 17 ms
4,380 KB
testcase_10 AC 17 ms
4,376 KB
testcase_11 AC 18 ms
4,380 KB
testcase_12 AC 19 ms
4,376 KB
testcase_13 AC 30 ms
7,424 KB
testcase_14 AC 29 ms
7,816 KB
testcase_15 AC 29 ms
7,352 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>
#include <string>
#include <algorithm>
#include <math.h>
using namespace std;

int main() {
    int q;
    vector<int> t = {0,0,0,1};
    int n;
    cin >> q;
    for(int i = 0;i < q;i++){
        cin >> n;
        for(int j = t.size();j <= n;j++){
            t.push_back((t[j-1]+t[j-2]+t[j-3]+t[j-4])%17);
        }
        cout << t[n-1] % 17 << endl;
    }
    return 0;
}
0