# | Submission time | Handle | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
401460 | 2021-05-10T09:57:06 Z | victoriad | Cup of Jamshid (IOI17_cup) | C++14 | 1 ms | 300 KB |
#include "cup.h" std::vector<int> find_cup() { std::vector<int> result(2); int c=ask_shahrasb(0, 0); int x=ask_shahrasb(c, 0); int y=ask_shahrasb(0, c); result[0]=x; result[1]=y; return result; }
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Incorrect | 1 ms | 300 KB | wrong cup location |