# | Submission time | Handle | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
890553 | 2023-12-21T13:08:01 Z | Iwantbemaster | Easter Eggs (info1cup17_eastereggs) | C++17 | 0 ms | 0 KB |
#include <bits/stdc++.h> using namespace std; int findegg(int n, vector<pair<int, int>> brid){ for(int i = 1; i <= n; i++){ vector<int> res; res.emplace_back(i); if(query({res})) return i; } return n; }