結果
問題 | No.3036 Restricted Lucas (Easy) |
ユーザー | TKTYI |
提出日時 | 2022-08-18 05:10:44 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,251 bytes |
コンパイル時間 | 873 ms |
コンパイル使用メモリ | 93,216 KB |
実行使用メモリ | 6,820 KB |
最終ジャッジ日時 | 2024-10-05 13:58:47 |
合計ジャッジ時間 | 1,641 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
ソースコード
#include<iostream> #include<vector> #include<cmath> #include<numeric> using namespace std; typedef long long int ll; #define FOR(i,l,r) for(ll i=l;i<r;i++) const int zero=false; const int one=true; const int two=one+one; const int three=two+one; const int four=three+one; const int five=four+one; const int six=five+one; const int seven=six+one; const int eight=seven+one; const int nine=eight+one; const int ten=nine+one; const int mod=pow(ten,nine)+seven; ll product(ll A,ll B){vector<ll>a={A},b={B};return inner_product(a.begin(),a.end(),b.begin(),0LL);} ll remainder(ll N){ ll l=zero,r=mod; while(r-l>one){ ll m=(l+r)>>one; if(product(m,mod)<=N)l=m; else r=m; } N-=product(l,mod); while(N>=mod)N-=mod; return N; } vector<vector<ll>>P(vector<vector<ll>>A,vector<vector<ll>>B){ vector<vector<ll>>res(two,vector<ll>(two)); FOR(i,zero,two)FOR(j,zero,two)FOR(k,zero,two)res[i][j]=remainder(res[i][j]+product(A[i][k],B[k][j])); return res; } int main(){ int T;cin>>T; while(T--){ int N;cin>>N; vector<vector<ll>>A={{one,one},{one,zero}},E={{one,zero},{zero,one}}; while(N){ if(N&one)E=P(A,E); A=P(A,A); N>>=one; } cout<<remainder(E[one][zero]+product(two,E[one][one]))<<endl; } }