結果
問題 | No.658 テトラナッチ数列 Hard |
ユーザー | ohreitetsu |
提出日時 | 2018-03-21 13:59:17 |
言語 | C++11 (gcc 11.4.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 898 bytes |
コンパイル時間 | 842 ms |
コンパイル使用メモリ | 68,576 KB |
実行使用メモリ | 10,624 KB |
最終ジャッジ日時 | 2024-06-24 19:29:39 |
合計ジャッジ時間 | 4,391 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
10,624 KB |
testcase_01 | AC | 2 ms
5,376 KB |
testcase_02 | TLE | - |
testcase_03 | -- | - |
testcase_04 | -- | - |
testcase_05 | -- | - |
testcase_06 | -- | - |
testcase_07 | -- | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
ソースコード
#include <iostream> #include <vector> #include <algorithm> using namespace std; typedef long long LL; struct X{ int index; LL n; int val; }; bool CompN(X &l, X &r){ return l.n<r.n; } bool CompI(X &l, X &r){ return l.index<r.index; } int main(int argc, char* argv[]) { int Q; cin>>Q; int i; vector<X> N(Q); for (i=0;i<Q;i++){ cin>>N[i].n; N[i].index=i; N[i].val=0; } sort(N.begin(),N.end(),CompN); vector<int> T1; T1.push_back(0); T1.push_back(0); T1.push_back(0); T1.push_back(1); LL t=4; for (i=0;i<Q;i++){ switch(N[i].n){ case 1: case 2: case 3: break; case 4: N[i].val=1; break; default: int Sum; while (t<N[i].n){ Sum=(T1[0]+T1[1]+T1[2]+T1[3])%17; T1.push_back(Sum); T1.erase(T1.begin()); t++; } N[i].val=T1[3]; break; } } sort(N.begin(),N.end(),CompI); for (i=0;i<Q;i++){ cout<<N[i].val<<endl; } return 0; }