# | TimeUTC-0 | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
338667 | Dymo | Nice sequence (IZhO18_sequence) | C++14 | 1870 ms | 47040 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;
#define pb push_back
#define ll int
#define pll pair<ll,ll>
#define ff first
#define ss second
#define endl "\n"
const ll maxn=8e5+5;
const ll mod =998244353 ;
const ll maxn1=51;
const ll base=1e9;
ll n, m;
vector<ll> tp;
bool dd[maxn];
ll ans[maxn];
ll ans1[maxn];
void dfs(ll u,ll mid)
{
// cout <<u<<endl;
dd[u]=1;
if (u+n<=mid&&!dd[u+n])
dfs(u+n,mid);
if (u-m>=0&&!dd[u-m])
dfs(u-m,mid);
tp.pb(u);
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... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |