# | Submission time | Handle | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
290886 | 2020-09-04T14:18:24 Z | PKhing | "The Lyuboyn" code (IZhO19_lyuboyn) | C++14 | 0 ms | 0 KB |
#include "interactive.h" using namespace std; vector<int> guess(int n) { vector <int> ans; for (int i = 1; i <= n; i++) { ans.push_back(ask(i)); } return ans; }