1 条题解

  • 0
    @ 2024-10-19 16:06:12
    #include<iostream>
    #include<string>
    using namespace std;
    string dic[1001], s;
    int main(){
        ios::sync_with_stdio(0);
        cin.tie(0); cout.tie(0);
        bool flag;
        int n, cnt = 0;
        cin >> n;
        for(int i = 1; i <= n; i++)cin >> dic[i];
        while(cin >> s){
            flag = 1;
            for(int i = 1; i <= n; i++){
                if(s == dic[i]){
                    flag = 0;
                    break;
                }
            }
            if(flag)cnt++;
        }
        cout << cnt;
        return 0;
    }
    
  • 1

信息

ID
2724
难度
9
分类
(无)
标签
递交数
6
已通过
2
通过率
33%
上传者