제출 #1368457

#제출 시각아이디문제언어결과실행 시간메모리
1368457neelamneelam19Hack (APIO25_hack)C++20
8 / 100
78 ms428 KiB
#include "hack.h"
#include <vector>

int hack(){
    for (long long i=2; i<=1000000; i++){
        long long a = collisions({1,i});
        if (a==1){
            return i-1;
        }
    }
}

컴파일 시 표준 에러 (stderr) 메시지

hack.cpp: In function 'int hack()':
hack.cpp:11:1: warning: control reaches end of non-void function [-Wreturn-type]
   11 | }
      | ^
#결과 실행 시간메모리채점기 출력
결과를 불러오는 중입니다…
#결과 실행 시간메모리채점기 출력
결과를 불러오는 중입니다…
#결과 실행 시간메모리채점기 출력
결과를 불러오는 중입니다…
#결과 실행 시간메모리채점기 출력
결과를 불러오는 중입니다…