結果

問題 No.657 テトラナッチ数列 Easy
ユーザー hitoyozakehitoyozake
提出日時 2018-04-14 16:22:18
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 1,230 ms / 2,000 ms
コード長 545 bytes
コンパイル時間 1,106 ms
コンパイル使用メモリ 83,788 KB
実行使用メモリ 66,048 KB
最終ジャッジ日時 2024-06-26 22:20:32
合計ジャッジ時間 22,555 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,195 ms
65,920 KB
testcase_01 AC 1,191 ms
65,920 KB
testcase_02 AC 1,200 ms
65,792 KB
testcase_03 AC 1,204 ms
65,920 KB
testcase_04 AC 1,195 ms
65,920 KB
testcase_05 AC 1,211 ms
66,048 KB
testcase_06 AC 1,190 ms
65,920 KB
testcase_07 AC 1,197 ms
66,048 KB
testcase_08 AC 1,193 ms
65,920 KB
testcase_09 AC 1,209 ms
66,048 KB
testcase_10 AC 1,214 ms
66,048 KB
testcase_11 AC 1,215 ms
66,048 KB
testcase_12 AC 1,218 ms
66,048 KB
testcase_13 AC 1,230 ms
66,048 KB
testcase_14 AC 1,229 ms
65,920 KB
testcase_15 AC 1,224 ms
66,048 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <map>
#include <vector>



int main()
{
    int num = 0;
    std::map<int, long long int> map;
    std::cin >> num;
    std::vector<int> v;
    map[0]=0;map[1]=0;map[2]=0;map[3]=0;map[4]=1;
    
    for(int i = 5; i <= 1000000; ++i)
    {
        map[i] = (map[i-1]+map[i-2]+map[i-3]+map[i-4])%17;
    }
    
    for( int i = 0; i < num; ++i)
    {
        int x = 0;
        std::cin >> x;
        v.push_back(map[x]);
    }

    for( auto i: v)
    {
        std::cout << i%17 << std::endl;
    }

    return 0;
}
0