제출 #86319

#제출 시각아이디문제언어결과실행 시간메모리
86319I_use_Brute_forceHindeks (COCI17_hindeks)C++14
5 / 50
62 ms2512 KiB
 #include <bits/stdc++.h>
#define pb push_back
#define mp make_pair
#define F first
#define S second
#define pii pair <int, int>
#define sz(a) (int)(a.size()) 
#define resize(v) v.resize(unique(all(v)) - v.begin()); 
#define all(a) a.begin(), a.end()
#define forit(it, s) for(__typeof(s.begin()) it = s.begin(); it != s.end(); it ++)

using namespace std;

void Fast_Read_Out()
{
	ios_base::sync_with_stdio(0);
	cin.tie(), cout.tie();
}

void Random()
{
	unsigned int seed;
	asm("rdtsc" : "=A" (seed));
	srand(seed);        
}

unsigned int Time()
{
	 unsigned int time = clock() / 1000.00;
	 return time;
}

const int inf = int(1e9) + 123;
const int N = int(5e5) + 123;

int a[N];

int main ()
{
	#ifdef JUDGE
		freopen("input.txt", "r", stdin);
	#endif 
	Random();
	Fast_Read_Out();
	int n;
	cin >> n;
	int mini = inf, cnt = 0;
	for(int i = 1; i <= n; i++) cin >> a[i], mini = min(mini, a[i]);
	cout << mini + 1 << endl;
	#ifdef JUDGE
//		cout << Time() << endl;
	#endif
}
// Easy Peasy Lemon Squeezy                                                            Sometimes it's the very people who no one imagines anything of who do the things no one can imagine.

컴파일 시 표준 에러 (stderr) 메시지

hindeks.cpp: In function 'int main()':
hindeks.cpp:47:18: warning: unused variable 'cnt' [-Wunused-variable]
  int mini = inf, cnt = 0;
                  ^~~
#Verdict Execution timeMemoryGrader output
Fetching results...