#include <bits/stdc++.h>
using namespace std;
#define ll long long
int main(){
ll n, m, ans = 0; cin >> n;
vector<ll> v(n);
for(ll i = 0; i < n; i++){
cin >> v[i];
}
cin >> m;
while(m--){
ll x;
cin >> x;
bool ok = true;
unordered_set<ll> s;
for(ll i = 0; i < x; i++){
ll c;
cin >> c;
s.insert(c);
}
for(auto &i : v){
if(s.find(i) != s.end()){
ok = false;
break;
}
}
if(ok) ans++;
}
cout << ans;
}
# |
결과 |
실행 시간 |
메모리 |
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 |
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 |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
1 ms |
348 KB |
Output is correct |
2 |
Correct |
1 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 |