码迷,mamicode.com
首页 > 其他好文 > 详细

oj--九度oj--1018

时间:2017-06-24 19:49:49      阅读:135      评论:0      收藏:0      [点我收藏+]

标签:string   div   nbsp   color   main   turn   print   str   ems   

简单hash

 

#include<cstdio>
#include<cstring>
int grade[101];
int main(){
    int n;
    int x;
    while(scanf("%d",&n)!=EOF){
        if(n==0) break;
        memset(grade,0,sizeof(grade)); 
        for(int i=0;i<n;i++){
            scanf("%d",&x);
            grade[x]++;
        }
        scanf("%d",&x);
        printf("%d\n",grade[x]);
    }
    return 0;
}

 

oj--九度oj--1018

标签:string   div   nbsp   color   main   turn   print   str   ems   

原文地址:http://www.cnblogs.com/kprac/p/7074164.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!