結果

問題 No.657 テトラナッチ数列 Easy
ユーザー aaaaaaiuaaaaaaiu
提出日時 2019-08-20 00:34:07
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 23 ms / 2,000 ms
コード長 332 bytes
コンパイル時間 1,821 ms
コンパイル使用メモリ 200,992 KB
実行使用メモリ 7,420 KB
最終ジャッジ日時 2024-10-05 13:38:25
合計ジャッジ時間 2,851 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 6 ms
7,380 KB
testcase_01 AC 7 ms
7,204 KB
testcase_02 AC 7 ms
7,372 KB
testcase_03 AC 6 ms
7,408 KB
testcase_04 AC 7 ms
7,360 KB
testcase_05 AC 19 ms
7,324 KB
testcase_06 AC 6 ms
7,340 KB
testcase_07 AC 6 ms
7,384 KB
testcase_08 AC 6 ms
7,216 KB
testcase_09 AC 20 ms
7,404 KB
testcase_10 AC 20 ms
7,372 KB
testcase_11 AC 21 ms
7,284 KB
testcase_12 AC 21 ms
7,420 KB
testcase_13 AC 21 ms
7,244 KB
testcase_14 AC 22 ms
7,396 KB
testcase_15 AC 23 ms
7,348 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
typedef long long ll;

int main() {
    int t[1000001];
    t[0]=t[1]=t[2]=t[3]=0;
    t[4]=1;
    for (int i=5;i<=1000000;i++) t[i]=(t[i-4]+t[i-3]+t[i-2]+t[i-1])%17;
    int q;
    cin>>q;
    while (q--) {
        int n;
        cin>>n;
        cout<<t[n]<<endl;
    }
    return 0;
}
0