1 条题解

  • 0
    @ 2024-12-12 18:05:19

    大家一起查字典

    #include<bits/stdc++.h>
    using namespace std;
    map<string,bool>mp;
    int main(){
        int n;cin>>n;
        while(n--){
            string s;cin>>s;mp[s]=true;
        }
        cin>>n;
        while(n--){
            string s;cin>>s;
            puts(mp[s]?"Yes":"No");
        }
    }
    
    • 1

    信息

    ID
    2975
    时间
    1000ms
    内存
    256MiB
    难度
    4
    标签
    递交数
    78
    已通过
    37
    上传者