# | Time | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
1205649 | bongobolto | Hack (APIO25_hack) | C++20 | 0 ms | 0 KiB |
#include "hack.h"
#include <iostream>
#include <vector>
#include <map>
using namespace std;
int hack()
{
int n = 1;
for (int i = 0; i < 500000; ++i)
{
// vector<long long> vec = {n};
if(collisions(vector<long long> vec = {n}) != 0LL)
{
cout<<n<<endl;
}
n++;
}
}