#include <bits/stdc++.h>
#include "coprobber.h"
using namespace std;
#define pb push_back
#define ll long long
//#define int long long
const ll mod=998244353;
const int mxsz=5e2;
const ll inf = LLONG_MAX;
vector<int> adj[mxsz];
int start(int n,bool a[mxsz][mxsz]){
for (int i=0;i<n;i++){
for (int j=0;j<n;j++){
if (a[i][j]){
adj[i].pb(j);
}
}
}
return 0;
}
int nextMove(int x){
return x;
}
# | 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... |