# | TimeUTC-0 | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
598208 | reni | Simple game (IZhO17_game) | C++17 | 79 ms | 10204 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>
#define endl '\n'
using namespace std;
long long a[1000001], fen[1000001];
void update(long long pos,long long val)
{
for(int i=pos;i<=1000000;i+=(i&-i))
{
fen[i]+=val;
}
}
long long query(long long val)
{
long long sum=0;
for(int i=val;i>0;i-=(i&-i))
{
sum+=fen[i];
}
return sum;
}
int main()
{
ios::sync_with_stdio(0);
cin.tie(0);
cout.tie(0);
long long i,j,n,m,t,pos,val;
cin>>n>>m;
Compilation message (stderr)
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |