Run ID 作者 问题 语言 测评结果 分数 时间 内存 代码长度 提交时间
2707 未知用户 与指定数字相同的数的个数 C++ 运行超时 0 1000 MS 252 KB 279 2019-12-07 10:47:11

Tests(0/1):


#include<iostream> int main(){ int a,b[100],c,d=0,i; scanf("%hd",&a); for(i=0;i<a;i++){ scanf("%hd",&b[i]); scanf("%hd",&c); } for(i=0;i<a;i++){ if(b[i]==c) d++; } printf("%hd",d); return 0; }


测评信息: