Submission #1351696

#TimeUsernameProblemLanguageResultExecution timeMemory
1351696SpyrosAlivHack (APIO25_hack)C++20
8 / 100
85 ms428 KiB
#include "hack.h"
#include <bits/stdc++.h>
using namespace std;
#define ll long long

const int MX = 1000001;

int hack(){
    for (int i = 2; i <= MX; i++) {
        ll tot = collisions({1, i});
        if (tot) {
            return i-1;
        }
    }
    assert(false);
}
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...