周赛 IQ test

Description

   Bob is preparing to pass IQ test. The most frequent task in this test is to find out which one of the given n numbers differs from the others. Bob observed that one number usually differs from the others in evenness. Help Bob — to check his answers, he needs a program that among the given n numbers finds one that is different in evenness.

Input

  The first line contains integer n (3 ≤ n ≤ 100) — amount of numbers in the task. The second line contains n space-separated natural numbers, not exceeding 100. It is guaranteed, that exactly one of these numbers differs from the others in evenness.

Output

  Output index of number that differs from the others in evenness. Numbers are numbered from 1 in the input order.

Sample Input

Input
5
2 4 7 8 10
Output
3
Input
4
1 2 1 1
Output
2

///题意:本题题意很简单,就是给一些数,要你找出这些数种那一个奇偶性不相同的唯一数的位置。
//@zhangxiaoyu
//2015/8/12

#include<cstdio>
#include<cstring>
#include<iostream>
#include<algorithm>
using namespace std;

int a[105];
int main()
{
    int tt;
    while(~scanf("%d",&tt))
    {
        int ans1=0,ans2=0;
        int pos1,pos2;
        for(int i=1;i<=tt;i++)
        {
            scanf("%d",&a[i]);
            if(a[i]%2==0)
            {
                ans1++;
                pos1=i;
            }
            else
            {
                ans2++;
                pos2=i;
            }
        }
        if(ans1>ans2) ///偶数比ji数多
        {
            printf("%d\n",pos2);
        }
        else
        {
            printf("%d\n",pos1);
        }
    }
    return 0;
}
全部评论

相关推荐

04-02 10:09
门头沟学院 Java
用微笑面对困难:这里面问题还是很多的,我也不清楚为啥大家会感觉没啥问题。首先就是全栈开发实习9个月的内容都没有java实习生的内容多,1整个技术栈没看出太核心和难点的内容,感觉好像被拉过去打杂了,而且全栈基本上很容易被毙。里面能问的bug是在太多了比如L:继承 BaseMapper 可直接使用内置方法’。请问你的 BaseMapper 是如何扫描实体类注解如果瞬时产生 100 个上传任务,MySQL 的索引设计是否会有瓶颈?你做过分库分表或者索引优化吗?全栈的内容可以针对动态难点去搞,技能特长写在下面吧,你写了这么多技能,项目和实习体现了多少?你可以在项目里多做文章然后把这个放下去,从大致来看实习不算太水,有含金量你也要写上内容针对哨兵里面的节点变化能问出一万个问题,这个很容易就爆了。
提前批简历挂麻了怎么办
点赞 评论 收藏
分享
04-01 11:08
中原工学院 Java
老六f:感觉这种培训期过了就找理由给你开了
点赞 评论 收藏
分享
评论
点赞
收藏
分享

创作者周榜

更多
牛客网
牛客网在线编程
牛客网题解
牛客企业服务