#include <bits/stdc++.h>
using namespace std;
int main(){
int n; cin >> n;
bool nlike[102];
memset(nlike, 0, sizeof(nlike));
while(n--) {
int t; cin >> t;
nlike[t] = true;
}
int m; cin >> m;
//cout << m << " mmm\n"; //!akjsfh
int ans = 0;
while(m--){
//cout << m << "<m\n";
//cout <<"here\n";
int k; cin >> k;
bool beli = 1;
//cout << beli << "<beli\n";
while(k--){
int a; cin >> a;
if(nlike[a]) {
beli = 0;
}
}
ans += beli;
}
cout << ans;
return 0;
}
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
0 ms |
348 KB |
Output is correct |
2 |
Correct |
0 ms |
348 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
1 ms |
344 KB |
Output is correct |
2 |
Correct |
0 ms |
344 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
1 ms |
344 KB |
Output is correct |
2 |
Correct |
1 ms |
344 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
1 ms |
600 KB |
Output is correct |
2 |
Correct |
0 ms |
348 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
0 ms |
348 KB |
Output is correct |
2 |
Correct |
0 ms |
348 KB |
Output is correct |