# | TimeUTC-0 | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
887952 | boris_mihov | Tents (JOI18_tents) | C++17 | 181 ms | 78932 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 <algorithm>
#include <iostream>
#include <numeric>
#include <cassert>
#include <vector>
typedef long long llong;
const int MAXN = 3000 + 10;
const int MOD = 1e9 + 7;
llong dp[MAXN][MAXN];
bool bl[MAXN][MAXN];
llong rec(int n, int m)
{
if (n < 0 || m < 0)
{
return 0;
}
if (n == 0 || m == 0)
{
return 1;
}
if (bl[n][m])
{
return dp[n][m];
}
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |