結果

問題 No.657 テトラナッチ数列 Easy
ユーザー SotaUNSotaUN
提出日時 2020-11-02 22:02:55
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 27 ms / 2,000 ms
コード長 564 bytes
コンパイル時間 841 ms
コンパイル使用メモリ 92,944 KB
実行使用メモリ 11,232 KB
最終ジャッジ日時 2024-07-22 08:07:27
合計ジャッジ時間 1,894 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 9 ms
11,136 KB
testcase_01 AC 8 ms
11,136 KB
testcase_02 AC 10 ms
11,136 KB
testcase_03 AC 9 ms
11,008 KB
testcase_04 AC 9 ms
11,136 KB
testcase_05 AC 22 ms
11,232 KB
testcase_06 AC 9 ms
11,136 KB
testcase_07 AC 8 ms
11,128 KB
testcase_08 AC 9 ms
11,008 KB
testcase_09 AC 23 ms
11,008 KB
testcase_10 AC 23 ms
11,112 KB
testcase_11 AC 23 ms
11,100 KB
testcase_12 AC 26 ms
11,012 KB
testcase_13 AC 25 ms
11,208 KB
testcase_14 AC 25 ms
11,008 KB
testcase_15 AC 27 ms
11,116 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <string>
#include <vector>
#include <algorithm>
#include <queue>
#include <cmath>
#include <climits>
#include <iomanip>
#include <set>
#include <map>
using namespace std;
typedef long long ll;
int main(){
    vector<ll> dp(1000000);
    dp[0] = 0,dp[1] = 0,dp[2] = 0,dp[3] = 1;
    for(int i = 4;i < 1000000;i++){
        dp[i] = dp[i - 1] + dp[i - 2] + dp[i - 3] + dp[i - 4];
        dp[i] %= 17;
    }
    ll q;
    cin >> q;
    for(int i = 0;i < q;i++){
        ll in;
        cin >> in;
        cout << dp[in - 1] << endl;
    }
}
0