| # | Time | Username | Problem | Language | Result | Execution time | Memory | 
|---|---|---|---|---|---|---|---|
| 377460 | marat0210 | Geppetto (COCI15_geppetto) | C++14 | 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 main()
{
    long long n, m;
    cin >>n>>m;
    if (n == 1) {
        cout <<1<<endl;
    }
    else if (n == 2) {
        if (m == 1) cout <<0<<endl;
        else cout <<3<<endl;
    }
}
| # | Verdict | Execution time | Memory | Grader output | 
|---|---|---|---|---|
| Fetching results... | ||||
