| # | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
|---|---|---|---|---|---|---|---|
| 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);
}
}
}