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