結果
問題 | No.657 テトラナッチ数列 Easy |
ユーザー | shikaku |
提出日時 | 2018-04-25 08:19:00 |
言語 | C++11 (gcc 11.4.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 964 bytes |
コンパイル時間 | 526 ms |
コンパイル使用メモリ | 61,400 KB |
実行使用メモリ | 12,800 KB |
最終ジャッジ日時 | 2024-06-27 20:57:55 |
合計ジャッジ時間 | 11,071 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 4 ms
12,800 KB |
testcase_01 | AC | 3 ms
7,104 KB |
testcase_02 | AC | 3 ms
7,048 KB |
testcase_03 | AC | 3 ms
6,984 KB |
testcase_04 | AC | 8 ms
7,056 KB |
testcase_05 | AC | 1,508 ms
7,316 KB |
testcase_06 | AC | 6 ms
7,372 KB |
testcase_07 | AC | 6 ms
7,304 KB |
testcase_08 | AC | 11 ms
7,240 KB |
testcase_09 | AC | 1,584 ms
7,320 KB |
testcase_10 | AC | 1,796 ms
7,372 KB |
testcase_11 | AC | 1,785 ms
7,400 KB |
testcase_12 | TLE | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
ソースコード
#include <iostream> #include <vector> using namespace std; int tori( int x ){ vector<int> t(1000000); if( x == 1 || x == 2 || x == 3 ) return 0; else if( x == 4 ) return 1; else if( x > 4 ){ int i; t.at(1) = 0; t.at(2) = 0; t.at(3) = 0; t.at(4) = 1; for( i = 5 ; i <= x ; i = i + 1 ){ t.at(i) = ( t.at(i - 1) + t.at(i - 2) + t.at(i - 3) + t.at(i - 4) ) % 17; } } return t.at(x); } int main(){ long long q, i; cin >> q; vector<long long> n(q); for( i = 0 ; i < q ; i = i + 1 ){ cin >> n.at(i); } for( i = 0 ; i < q ; i = i + 1 ){ cout << tori( n.at(i) ) << endl; } return 0; }