// أَعُوذُ بِاللَّهِ مِنَ الشَّيْطَانِ الرَّجِيمِ
#include <bits/stdc++.h>
#define bismillah ios_base::sync_with_stdio(0); cin.tie(0); cout.tie(0);
#define ll long long
using namespace std;
int a[101];
int b[101];
int n, m, k, count = 0;
bool isTrue;
int main(){
bismillah
int n, m;
cin >> n;
int a[n];
for(int i = 0; i < n; i++){
cin >> a[i];
}
cin >> m;
int count = 0;
while(m--){
int k;
cin >> k;
int b[k];
isTrue = true;
for(int i = 0; i < k; i++){
cin >> b[i];
for(int j = 0; j < n; j++){
if(b[i] == a[j]){
isTrue = false;
}
}
}
if(isTrue == true) count++;
}
cout << count;
}
# |
결과 |
실행 시간 |
메모리 |
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 |
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 |
344 KB |
Output is correct |
2 |
Correct |
1 ms |
348 KB |
Output is correct |