文章

2

粉丝

6

获赞

13

访问

493

头像
统计同成绩学生人数 ,请问为啥不通过呢?谢谢
P1329 浙江大学机试题
发布于2025年3月3日 16:26
阅读数 243

#include <bits/stdc++.h>
using namespace std;

int n,temp;
int target;
int main() {
    map<int ,int> m;
    while(cin>>n) {
        if(n==0) {
            break;
        }
        for(int i=0; i<n; i++) {
            cin>>temp;
            m[temp]+=1;
        }
        cin>>target;
        if(m.find(target)!=m.end()) {
            cout<<m[target]<<endl;
        } else {
            cout<<"0"<<endl;
        }
&...

登录查看完整内容


登录后发布评论

2 条评论
snake VIP
2025年3月4日 12:31

这个代码可以AC呀,是不是发错代码了

赞(0)

S0meb0dy3 : 回复 snake: 确实可以AC,可能我搞错了

2025年3月4日 14:33