#include <bits/stdc++.h>
#define GLHF ios_base::sync_with_stdio(0); cin.tie(), cout.tie();
#define GGWP return 0;
#define ALTF4 exit(0)
#define GCWS/*Good Contest, Well Solved*/ ALTF4
#define ull unsigned long long
#define ll long long
#define ld long double
#define fxr1(x) for(int I = 0; I < x; ++I)
#define fxr(x) for(int I = 0; I <= x; ++I)
#define F first
#define S second
using namespace std;
int n, mini = 1000001, a[500001], ans;
int main()
{
GLHF
cin >> n;
for ( int I = 0; I < n; ++I )
{
cin >> a[I];
mini = min( mini, a[I] );
}
for ( int I = 0; I < n; ++I )
if ( a[I] > mini )
++ans;
if ( ans == 0 )
cout << 1 << endl, GCWS;
cout << ans << endl;
GGWP
}
//clang++ -v -std=c++11 finish fishing the fish.people
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
2 ms |
376 KB |
Output isn't correct |
2 |
Correct |
2 ms |
500 KB |
Output is correct |
3 |
Incorrect |
2 ms |
500 KB |
Output isn't correct |
4 |
Incorrect |
2 ms |
608 KB |
Output isn't correct |
5 |
Incorrect |
2 ms |
608 KB |
Output isn't correct |
6 |
Incorrect |
2 ms |
608 KB |
Output isn't correct |
7 |
Incorrect |
3 ms |
608 KB |
Output isn't correct |
8 |
Incorrect |
12 ms |
1088 KB |
Output isn't correct |
9 |
Incorrect |
58 ms |
2512 KB |
Output isn't correct |
10 |
Incorrect |
30 ms |
2512 KB |
Output isn't correct |