oj--九度oj--1018
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了oj--九度oj--1018相关的知识,希望对你有一定的参考价值。
简单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的主要内容,如果未能解决你的问题,请参考以下文章