| # | Time | Username | Problem | Language | Result | Execution time | Memory |
|---|---|---|---|---|---|---|---|
| 1368070 | unknown | Hack (APIO25_hack) | C++20 | 0 ms | 0 KiB |
#include <vector>
using namespace std;
int hack(){
int result;
for (int k = 1; k <= 500000; k++) {
result = collisions({1, 1+k});
if (result > 0) {
return k;
break;
}
}
}