Submission #3984521
Source Code Expand
Copy
#include <iostream> #include <string> #include <vector> #include <deque> #include <map> #include <algorithm> #include <cstdlib> #include <cmath> #include <numeric> #include <utility> #define ALL_OF(x) (x).begin(), (x).end() #define REP(i,n) for(int i=0, i##_len=(n); i<i##_len; i++) template<class T> bool chmax(T &a, const T &b) {if (a < b) {a = b; return 1;} return 0; } template<class T> bool chmin(T &a, const T &b) {if (a > b) {a = b; return 1;} return 0; } typedef long long ll; using namespace std; int main() { int n, a, b; cin >> n >> a >> b; vector<int> p(n, 0); REP(i, n) cin >> p[i]; int q1 = 0, q2 = 0, q3 = 0; REP(i, n) { if (p[i] <= a) q1++; else if (p[i] <= b) q2++; else q3++; } cout << min(q1, min(q2, q3)); }
Submission Info
Submission Time | |
---|---|
Task | B - Contests |
User | ganmodokix |
Language | C++14 (GCC 5.4.1) |
Score | 200 |
Code Size | 833 Byte |
Status | AC |
Exec Time | 1 ms |
Memory | 256 KB |
Judge Result
Set Name | Sample | All | ||||
---|---|---|---|---|---|---|
Score / Max Score | 0 / 0 | 200 / 200 | ||||
Status |
|
|
Set Name | Test Cases |
---|---|
Sample | sample-01.txt, sample-02.txt, sample-03.txt |
All | 01.txt, 02.txt, 03.txt, 04.txt, 05.txt, 06.txt, 07.txt, sample-01.txt, sample-02.txt, sample-03.txt |
Case Name | Status | Exec Time | Memory |
---|---|---|---|
01.txt | AC | 1 ms | 256 KB |
02.txt | AC | 1 ms | 256 KB |
03.txt | AC | 1 ms | 256 KB |
04.txt | AC | 1 ms | 256 KB |
05.txt | AC | 1 ms | 256 KB |
06.txt | AC | 1 ms | 256 KB |
07.txt | AC | 1 ms | 256 KB |
sample-01.txt | AC | 1 ms | 256 KB |
sample-02.txt | AC | 1 ms | 256 KB |
sample-03.txt | AC | 1 ms | 256 KB |