結果
問題 | No.534 フィボナッチフィボナッチ数 |
ユーザー | ytft |
提出日時 | 2021-03-21 19:46:07 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
RE
|
実行時間 | - |
コード長 | 1,015 bytes |
コンパイル時間 | 1,631 ms |
コンパイル使用メモリ | 170,512 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2024-11-22 14:42:14 |
合計ジャッジ時間 | 3,416 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | RE | - |
testcase_01 | AC | 2 ms
5,248 KB |
testcase_02 | AC | 2 ms
5,248 KB |
testcase_03 | AC | 2 ms
5,248 KB |
testcase_04 | AC | 2 ms
5,248 KB |
testcase_05 | AC | 2 ms
5,248 KB |
testcase_06 | AC | 2 ms
5,248 KB |
testcase_07 | AC | 2 ms
5,248 KB |
testcase_08 | AC | 2 ms
5,248 KB |
testcase_09 | AC | 2 ms
5,248 KB |
testcase_10 | AC | 2 ms
5,248 KB |
testcase_11 | AC | 2 ms
5,248 KB |
testcase_12 | AC | 2 ms
5,248 KB |
testcase_13 | AC | 2 ms
5,248 KB |
testcase_14 | AC | 2 ms
5,248 KB |
testcase_15 | AC | 2 ms
5,248 KB |
testcase_16 | AC | 2 ms
5,248 KB |
testcase_17 | AC | 2 ms
5,248 KB |
testcase_18 | AC | 2 ms
5,248 KB |
testcase_19 | AC | 2 ms
5,248 KB |
testcase_20 | AC | 2 ms
5,248 KB |
testcase_21 | AC | 2 ms
5,248 KB |
testcase_22 | AC | 2 ms
5,248 KB |
testcase_23 | AC | 2 ms
5,248 KB |
testcase_24 | AC | 2 ms
5,248 KB |
testcase_25 | AC | 2 ms
5,248 KB |
testcase_26 | AC | 2 ms
5,248 KB |
testcase_27 | AC | 2 ms
5,248 KB |
testcase_28 | AC | 2 ms
5,248 KB |
testcase_29 | AC | 2 ms
5,248 KB |
testcase_30 | AC | 2 ms
5,248 KB |
testcase_31 | AC | 2 ms
5,248 KB |
testcase_32 | AC | 2 ms
5,248 KB |
testcase_33 | AC | 2 ms
5,248 KB |
testcase_34 | AC | 2 ms
5,248 KB |
testcase_35 | AC | 2 ms
5,248 KB |
testcase_36 | AC | 1 ms
5,248 KB |
testcase_37 | AC | 2 ms
5,248 KB |
testcase_38 | AC | 2 ms
5,248 KB |
testcase_39 | AC | 2 ms
5,248 KB |
testcase_40 | AC | 2 ms
5,248 KB |
testcase_41 | AC | 2 ms
5,248 KB |
ソースコード
#include <bits/stdc++.h> using namespace std; long long motome(long long MOD,long long N){ vector<int> two; while(N>0){ two.push_back(N%2); N=N/2; } int M=two.size(); vector<long long> fibMin1(M),fib(M); fibMin1[0]=0; fib[0]=1; for(int i=1;i<M;i++){ fibMin1[i]=fibMin1[i-1]*fibMin1[i-1]%MOD; fibMin1[i]=(fibMin1[i]+fib[i-1]*fib[i-1])%MOD; fib[i]=fibMin1[i-1]*fib[i-1]%MOD; fib[i]=(fib[i]+fib[i-1]*(fib[i-1]+fibMin1[i-1]))%MOD; } long long temp=0,temp2=1; long long r,q; for(int i=0;i<M;i++){ if(two[i]){ r=temp; q=temp2; temp=q*fib[i]%MOD; temp=(temp+r*fibMin1[i])%MOD; temp2=r*fib[i]%MOD; temp2=(temp2+q*(fib[i]+fibMin1[i]))%MOD; } } return temp; } int main(){ long long N; long long MOD=2000000016; cin>>N; long long ans=motome(MOD,N); MOD=1000000007; ans=motome(MOD,ans); cout<<ans<<endl; }