| # | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
|---|---|---|---|---|---|---|---|
| 1361691 | opeleklanos | Hack (APIO25_hack) | C++20 | 0 ms | 0 KiB |
#include <iostream>
#include <vector>
using namespace std;
// int secretNum = 8;
int mx = 1000000;
int hack(){
for(int i = 2; i<mx; i++){
if(collisions({1, i})) return i-1;
}
return -1;
}