| # | Time | Username | Problem | Language | Result | Execution time | Memory |
|---|---|---|---|---|---|---|---|
| 1353475 | isct | Hack (APIO25_hack) | C++20 | 0 ms | 0 KiB |
#include "hack.h"
#include <vector>
#include <bits/stdc++.h>
using namespace std;
int hack()
{
for (long long i = 3; i++)
{
long long response = collisions({1, i});
if (response == 1)
{
return (i - 1);
}
}
}