제출 #432343

#제출 시각아이디문제언어결과실행 시간메모리
432343Pbezz버섯 세기 (IOI20_mushrooms)C++14
10 / 100
247 ms256 KiB
#include "mushrooms.h" #include <bits/stdc++.h> using namespace std; #define ll long long #define pb push_back typedef pair<ll,ll> pii; const ll MAXN = 2e5+5; const ll INF = 1e9+7; int count_mushrooms(int n) { std::vector<int> m; int ans=1; for (int i = 1; i < n; i++){ m={0,i}; int c1 = use_machine(m); if(c1==0)ans++; } return ans; }
#Verdict Execution timeMemoryGrader output
Fetching results...