# | TimeUTC-0 | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
45299 | Extazy | Tents (JOI18_tents) | C++17 | 1573 ms | 42784 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;
const int N = 3007;
const int MOD = (1e9) + 7;
int n,m;
bool used[N][N];
int state[N][N];
int choose(int n, int k) {
if(k==0) return 1;
if(k==1) return n;
return n*(n-1)/2;
}
int ways(int k) {
if(k==0) return 1;
if(k==1) return 4;
return 1;
}
int recurse(int n, int m) {
if(n==0 || m==0) return 1;
if(used[n][m]) return state[n][m];
long long ans=0;
Compilation message (stderr)
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |