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