Submission #86518

# Submission time Handle Problem Language Result Execution time Memory
86518 2018-11-26T11:52:51 Z MaHaMBa_25 Hindeks (COCI17_hindeks) C++14
5 / 50
123 ms 2380 KB
#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, a[500001], b[500001];

int main()
{
	GLHF
	cin >> n;
	for ( int I = 0; I < n; ++I )
		cin >> a[I];
	sort(a, a + n);
	for ( int I = 0; I < n - 1; ++I )
	{
		if ( a[0] < a[I] )
				++b[0];
	}
	cout << b[0] << endl;
	GGWP
}
 
//clang++ -v -std=c++11 finish fishing the fish.people
# Verdict Execution time Memory Grader output
1 Correct 3 ms 376 KB Output is correct
2 Incorrect 3 ms 456 KB Output isn't correct
3 Incorrect 3 ms 456 KB Output isn't correct
4 Incorrect 2 ms 456 KB Output isn't correct
5 Incorrect 2 ms 456 KB Output isn't correct
6 Incorrect 2 ms 456 KB Output isn't correct
7 Incorrect 5 ms 536 KB Output isn't correct
8 Incorrect 23 ms 760 KB Output isn't correct
9 Incorrect 123 ms 2380 KB Output isn't correct
10 Incorrect 54 ms 2380 KB Output isn't correct