QOJ.ac

QOJ

ID题目提交者结果用时内存语言文件大小提交时间测评时间
#574232#9320. Find the Easiest Problemamumu123Compile Error//C++17810b2024-09-18 21:09:122024-09-18 21:09:13

Judging History

你现在查看的是最新测评结果

  • [2024-09-18 21:09:13]
  • 评测
  • [2024-09-18 21:09:12]
  • 提交

answer

#include<bits/stdc++.h>
using namespace std;
typedef long long ll;
const int N=1005;
int main() {
    ios::sync_with_stdio(false);
    cin.tie(0);
    cout.tie(0);
    ll t;
    cin>>t;
    while(t--){
        int n;
        cin>>n;
        set<string>mp;
        map<char,int>mmp;
        int x=0;
        char y=65;
        while(n--){
            string a,c,d;
            char b;
            cin>>a>>b>>c;
            if(c[0]=='a'){
                d=a+b+c;//就是判断是否重复
               auto it=mp.find(d);
               if(it==mp.end()){
                mm[b]++;
               }
            }
        }
          for(auto [key,val]:mmp){
            if(val>x){
                y=key;
            }
           }
       cout<<y<<"\n";
    }
    return 0;
}

詳細信息

answer.code: In function ‘int main()’:
answer.code:26:17: error: ‘mm’ was not declared in this scope; did you mean ‘mmp’?
   26 |                 mm[b]++;
      |                 ^~
      |                 mmp