A. IQ test1300 / 暴力

Posted 幽殇默

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了A. IQ test1300 / 暴力相关的知识,希望对你有一定的参考价值。


https://codeforces.com/problemset/problem/25/A

#include<bits/stdc++.h>
using namespace std;
int a[105],n;
int main(void)
{
	int cnt1=0,cnt2=0;
	cin>>n;
	for(int i=1;i<=n;i++) 
	{
		cin>>a[i];
		if(a[i]&1) cnt1++;
		else cnt2++;
	}
	if(cnt1>cnt2)
	{
		for(int i=1;i<=n;i++)
		{
			if(a[i]%2==0) 
			{
				cout<<i;
				return 0;
			}
		}
 	}else
 	{
 		for(int i=1;i<=n;i++)
		{
			if(a[i]&1) 
			{
				cout<<i;
				return 0;
			}
		}
 	}
	return 0;
}

以上是关于A. IQ test1300 / 暴力的主要内容,如果未能解决你的问题,请参考以下文章

A. Strange Birthday Party1300 / 思维 贪心

C. Boats Competition1300 / 思维 暴力

ybtoj 11.13 S组暴力A. 他的世界

A. Supercentral Point1000 / 暴力

XMPP:Ejabberd 未将具有命名空间前缀的自定义 IQ 转发给用户

A. Cheap Travel1200 / 暴力