# |
Submission time |
Handle |
Problem |
Language |
Result |
Execution time |
Memory |
975982 |
2024-05-06T04:16:18 Z |
vjudge1 |
Pizza (COCI21_pizza) |
C++17 |
|
1 ms |
348 KB |
#include <bits/stdc++.h>
using namespace std;
#define int long long
#define pb push_back
#define fi first
#define se second
#define all(x) (x).begin(), (x).end()
#define nah_id_win ios_base::sync_with_stdio(0); cin.tie(0)
signed main(){
nah_id_win;
int n; cin >> n;
vector<int> gaboleh(105);
for (int i = 0; i < n; i++){
int x; cin >> x;
gaboleh[x] = 1;
}
int ans = 0;
int m; cin >> m;
while (m--){
int k; cin >> k;
bool flag = 1;
for (int i = 0; i < k; i++){
int b; cin >> b;
if (gaboleh[b]){
flag = 0;
}
}
if (flag) ans++;
}
cout << ans << "\n";
}
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
0 ms |
344 KB |
Output is correct |
2 |
Correct |
0 ms |
348 KB |
Output is correct |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
0 ms |
348 KB |
Output is correct |
2 |
Correct |
0 ms |
348 KB |
Output is correct |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
0 ms |
348 KB |
Output is correct |
2 |
Correct |
0 ms |
348 KB |
Output is correct |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
1 ms |
348 KB |
Output is correct |
2 |
Correct |
1 ms |
348 KB |
Output is correct |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
1 ms |
348 KB |
Output is correct |
2 |
Correct |
0 ms |
348 KB |
Output is correct |