結果
| 問題 | No.658 テトラナッチ数列 Hard |
| コンテスト | |
| ユーザー |
ngtkana
|
| 提出日時 | 2020-04-04 12:26:12 |
| 言語 | C++17 (gcc 15.2.0 + boost 1.89.0) |
| 結果 |
AC
|
| 実行時間 | 2 ms / 2,000 ms |
| コード長 | 601 bytes |
| 記録 | |
| コンパイル時間 | 1,475 ms |
| コンパイル使用メモリ | 214,444 KB |
| 実行使用メモリ | 6,400 KB |
| 最終ジャッジ日時 | 2026-06-09 08:16:54 |
| 合計ジャッジ時間 | 2,740 ms |
|
ジャッジサーバーID (参考情報) |
judge2_1 / judge1_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 8 |
ソースコード
#include<bits/stdc++.h>
using lint=long long;
using real=long double;
int main(){
std::cin.tie(nullptr);std::ios_base::sync_with_stdio(false);
std::cout.setf(std::ios_base::fixed);std::cout.precision(15);
lint mod=17;
std::vector<lint>a={1,0,0,0,1};
while(true){
if(std::vector<lint>(a.begin(),a.begin()+4)
==std::vector<lint>(a.end()-4,a.end()))break;
a.push_back(std::accumulate(a.end()-4,a.end(),0ll)%mod);
}
lint sz=a.size()-4;
lint q;std::cin>>q;
while(q--){
lint x;std::cin>>x;
std::cout<<a.at(x%sz)<<'\n';
}
}
ngtkana