Submission #432342

#TimeUsernameProblemLanguageResultExecution timeMemory
432342PbezzCounting Mushrooms (IOI20_mushrooms)C++14
10 / 100
231 ms260 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...