# | Time | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
1205643 | bongobolto | Hack (APIO25_hack) | C++20 | 0 ms | 0 KiB |
#include "hack.h"
#include <vector>
#include <map>
using ll = long long;
int hack()
{
for (int i = 1; i < 500001; ++i)
{
if(collisions({i} != 0))
{
return i;
}
}
}