답안 #1002612

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
1002612 2024-06-19T17:00:59 Z MilosMilutinovic 버섯 세기 (IOI20_mushrooms) C++14
0 / 100
0 ms 344 KB
#include "mushrooms.h"
#include <bits/stdc++.h>

using namespace std;

int count_mushrooms(int n) {
  int res = 0;
	for (int i = 1; i < n; i++) {
    res += !use_machine({0, i});
  }
  return res;
}
# 결과 실행 시간 메모리 Grader output
1 Incorrect 0 ms 344 KB Answer is not correct.
2 Halted 0 ms 0 KB -