답안 #975982

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
975982 2024-05-06T04:16:18 Z vjudge1 Pizza (COCI21_pizza) C++17
50 / 50
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";
}
# 결과 실행 시간 메모리 Grader output
1 Correct 0 ms 344 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 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