# | TimeUTC-0 | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
853024 | phathnv | Party (INOI20_party) | C++11 | 3034 ms | 1252 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 <bits/stdc++.h>
using namespace std;
const int MOD = 1e9 + 7;
int pw[2][1 << 15];
void Add(int &x, const int &y) {
x += y;
if (x >= MOD)
x -= MOD;
}
int Pow2(int k) {
return 1ll * pw[0][k & ((1 << 15) - 1)] * pw[1][k >> 15] % MOD;
}
int Pow(int n, int k) {
if (k == 0)
return 1;
int res = Pow(n, k >> 1);
res = 1ll * res * res % MOD;
if (k & 1)
res = 1ll * res * n % MOD;
return res;
}
void CalcCnt(long long n, vector<long long> &cnt) {
int ptr = 0;
for(long long x = 1; n > 0; x <<= 1) {
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |