제출 #1328934

#제출 시각아이디문제언어결과실행 시간메모리
1328934hectormedranoHotter Colder (IOI10_hottercolder)C++20
컴파일 에러
0 ms0 KiB
#include <bits/stdc++.h>
#include "grader.h"
#include "hottercolder.h"
#include <stdio.h>
#include <math.h>
#include <stdlib.h>
using namespace std;

int HC(int N){
   int g = Guess(1);
   int h = Guess(N);
   if (g == 0) return N/2;
   if (g < 0) return N/4;
   if (g > 0) return 3*N/4;
}

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

hottercolder.cpp:3:10: fatal error: hottercolder.h: No such file or directory
    3 | #include "hottercolder.h"
      |          ^~~~~~~~~~~~~~~~
compilation terminated.