# | TimeUTC-0 | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
9558 | lemonsqueeze | Phibonacci (kriii2_P) | C++98 | 0 ms | 1088 KiB |
This submission is migrated from previous version of oj.uz, which used different machine for grading. This submission may have different result if resubmitted.
#include<stdio.h>
typedef long long ll;
const int MM = 1000000007;
struct llL{
llL(){d[0] = 0, d[1] = 0;}
llL(ll d0, ll d1){ d[0] = d0; d[1] = d1; } // d0*MM+d1
ll d[2];
llL operator+(const llL l) const{
llL ans = llL(0,0);
for(int i=0;i<2;i++){
ans.d[i] = l.d[i] + d[i];
}
ans.d[0] += ans.d[1] / MM;
ans.d[1] %= MM;
ans.d[0] %= MM;
return ans;
}
llL operator*(const llL l) const{
llL ans = llL(0,0);
ans.d[1] = d[1] * l.d[1];
ans.d[0] = d[1] * l.d[0] + d[0] * l.d[1];
ans.d[0] += ans.d[1] / MM;
ans.d[1] %= MM;
ans.d[0] %= MM;
return ans;
}
};
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |