#include <bits/stdc++.h>
using namespace std;
int main(){
int n;
cin >> n;
map<int,bool> mp;
for(int i = 0; i<n; i++){
int x;
cin >> x;
mp[x] = 1;
}
int m;
cin >> m;
int ans = 0;
for(int i = 0; i<m; i++){
int k;
cin >> k;
int ril = 1;
for(int j = 0; j<k; j++){
int x;
cin >> x;
if(mp[x] == 1){
ril = 0;
}
}
if(ril) ans++;
}
cout << ans << endl;
}
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
0 ms |
344 KB |
Output is correct |
2 |
Correct |
0 ms |
348 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
0 ms |
344 KB |
Output is correct |
2 |
Correct |
1 ms |
344 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
1 ms |
344 KB |
Output is correct |
2 |
Correct |
1 ms |
348 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
1 ms |
348 KB |
Output is correct |
2 |
Correct |
1 ms |
348 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
0 ms |
348 KB |
Output is correct |
2 |
Correct |
1 ms |
348 KB |
Output is correct |