제출 #604901

#제출 시각아이디문제언어결과실행 시간메모리
604901HamletPetrosyanCounting Mushrooms (IOI20_mushrooms)C++17
0 / 100
0 ms208 KiB
#include "mushrooms.h"
#include <vector>
using namespace std;

int count_mushrooms(int n) {
	vector<int> m;
	int ret = 0;
	m = {0, 0};
	for(int i = 1; i < n; i++){
		m[1] = i;
		ret += use_machine(m);
	}
	return ret;
}
#결과 실행 시간메모리채점기 출력
결과를 불러오는 중입니다…