#include <bits/stdc++.h>
using namespace std;
int main(){
int N,M, K,B;
int ans = 0;
cin >> N;
int A[N];
for(int i=0; i<N; i++){
cin >> A[i];
}
cin>> M;
bool isTrue = true;
for(int i=0; i<M; i++){
isTrue = true;
cin >> K;
for(int j=0; j<K; j++){
cin >> B;
for(int k=0; k<N; k++){
if(B == A[k]){
isTrue = false;
break;
}
}
}
if(isTrue == true){
ans++;
}
}
cout << ans<< endl;
}
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
0 ms |
348 KB |
Output is correct |
2 |
Correct |
1 ms |
348 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
1 ms |
344 KB |
Output is correct |
2 |
Correct |
0 ms |
348 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
1 ms |
600 KB |
Output is correct |
2 |
Correct |
1 ms |
344 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 |
344 KB |
Output is correct |
2 |
Correct |
0 ms |
348 KB |
Output is correct |