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 <bits/stdc++.h>
using namespace std;
#define MOD 1000000007
#define INF 987654321
typedef long long lld;
lld gpow(lld a, lld x){
if(x == 0) return 1;
if(x < 1) return a%MOD;
lld r = gpow(a, x/2)%MOD;
if(x&1) return ((r*r)%MOD * (a%MOD))%MOD;
return (r*r)%MOD;
}
int main(){
lld n, k;
while(~scanf("%lld %lld", &n, &k)){
lld x = (n+1)/2;
printf("%lld\n", (gpow(2, x)+MOD-(n%2!=0))%MOD);
}
return 0;
}
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |