#include <bits/stdc++.h>
using namespace std;
set<int> a;
int main() {
int n;cin >> n;
for(int i = 0; i < n; i++){
int x; cin >> x;
a.insert(x);
}
int jawab = 0;
int m; cin >> m;
while(m--){
int x; cin >> x;
bool suka = true;
while(x--){
int y;
cin >> y;
if(a.count(y)){
suka = false;
}
}
if(suka) jawab++;
}
cout << jawab << endl;
return 0;
}
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
1 ms |
440 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 |
0 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 |
1 ms |
348 KB |
Output is correct |
2 |
Correct |
0 ms |
348 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
0 ms |
432 KB |
Output is correct |
2 |
Correct |
0 ms |
344 KB |
Output is correct |