# | Submission time | Handle | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
928018 | 2024-02-15T17:35:05 Z | EJIC_B_KEDAX | Comparing Plants (IOI20_plants) | C++17 | 0 ms | 0 KB |
#include <bits/stdc++.h> #define x first #define y second using ll = long long; using namespace std; void solve(); int main() { #ifndef LOCAL cin.tie(nullptr)->sync_with_stdio(false); #endif cout << fixed << setprecision(30); int t = 1; // cin >> t; while (t--) { solve(); } } void solve() { cout << "00\n"; }