# | Time | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
339813 | ammar2000 | Geppetto (COCI15_geppetto) | C++17 | 1 ms | 364 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;
int n,m;
int main()
{
cin>>n>>m;
long long y=1<<n;
if (m)
cout <<y-m-1;
else cout <<y;
for (int u=0;u<m;u++)
{
int a,b;
cin>>a>>b;
}
return 0;
}
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |