| # | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
|---|---|---|---|---|---|---|---|
| 1285795 | sunflower | Easter Eggs (info1cup17_eastereggs) | C++17 | 0 ms | 0 KiB |
#include "grader.h"
#include <bits/stdc++.h>
using namespace std;
int findEgg(int n, vector <pair <int, int>> edges) {
FOR(i, 1, n - 1) if (query({i})) return i;
return n;
}
