# | Submission time | Handle | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
86318 | 2018-11-26T07:07:55 Z | Azamat_Murat | Hindeks (COCI17_hindeks) | C++14 | 59 ms | 2504 KB |
#include <bits/stdc++.h> #define mp make_pair #define pb push_back #define f first #define s second #define all(x) x.begin(), x.end() #define ll long long //#define int long long using namespace std; void boost() { ios_base::sync_with_stdio(false); cin.tie(NULL); } void free() { freopen("A.in", "r", stdin); freopen("A.out", "w", stdout); } int a[500001]; main() { //free(); boost(); int n; cin >> n; int mn = 1e9, ans = 0; for(int i = 0; i < n; i++) cin >> a[i], mn = min(a[i], mn); for(int i = 0; i < n; i++) if(a[i] != mn) ans++; cout << ans, exit(0); }
Compilation message
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Correct | 2 ms | 376 KB | Output is correct |
2 | Incorrect | 2 ms | 376 KB | Output isn't correct |
3 | Incorrect | 2 ms | 448 KB | Output isn't correct |
4 | Incorrect | 2 ms | 468 KB | Output isn't correct |
5 | Incorrect | 2 ms | 484 KB | Output isn't correct |
6 | Incorrect | 2 ms | 528 KB | Output isn't correct |
7 | Incorrect | 3 ms | 576 KB | Output isn't correct |
8 | Incorrect | 13 ms | 964 KB | Output isn't correct |
9 | Incorrect | 59 ms | 2504 KB | Output isn't correct |
10 | Incorrect | 29 ms | 2504 KB | Output isn't correct |