题解

1 条题解

  • 0
    @ 2017-06-12 21:56:54
    #include <stdio.h>
    using namespace std;
    int x,a,c;
    int main()
    {
        while(scanf("%d",&x)!=-1){
            if(c==0)a=x,c=1;
            else if(x==a)c++;
            else c--;
        }
        printf("%d\n",a);
        return 0;
    }
    
  • 1

信息

难度
9
分类
其他 | 构造 点击显示
标签
(无)
递交数
10
已通过
2
通过率
20%
上传者