답안 #960380

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
960380 2024-04-10T11:04:24 Z ALTAKEXE 버섯 세기 (IOI20_mushrooms) C++17
0 / 100
0 ms 344 KB
#include <bits/stdc++.h>
using namespace std;
int use_machine(vector<int> x);
int count_mushrooms(int n)
{
	vector<int> m;
	for (int i = 0; i < n; i++)
		m.push_back(i);
	int c1 = use_machine(m);
	m = {0, 1};
	int c2 = use_machine(m);
	return c1 + c2;
}
# 결과 실행 시간 메모리 Grader output
1 Incorrect 0 ms 344 KB Answer is not correct.
2 Halted 0 ms 0 KB -