Submission #892211

#TimeUsernameProblemLanguageResultExecution timeMemory
892211vjudge1Super Dango Maker (JOI22_dango3)C++17
Compilation error
0 ms0 KiB
#include <bits/stdc++.h> using namespace std; #define all(x) x.begin(), x.end() #define ar array #define pb push_back #define ln '\n' #define int long long using i64 = long long; template <class F, class _S> bool chmin(F &u, const _S &v){ bool flag = false; if ( u > v ){ u = v; flag |= true; } return flag; } template <class F, class _S> bool chmax(F &u, const _S &v){ bool flag = false; if ( u < v ){ u = v; flag |= true; } return flag; } //signed main(){ // ios_base::sync_with_stdio(false); // cin.tie(nullptr); // // // // cout << '\n'; //}

Compilation message (stderr)

/usr/bin/ld: /tmp/cc8Pv6KQ.o: in function `main':
grader.cpp:(.text.startup+0x111): undefined reference to `Solve(int, int)'
collect2: error: ld returned 1 exit status