Submission #483427

#TimeUsernameProblemLanguageResultExecution timeMemory
483427rainboyPizza (COCI21_pizza)C11
50 / 50
1 ms280 KiB
#include <stdio.h>

#define A	100

int main() {
	static char bad[A];
	int n, m, cnt;

	scanf("%d", &n);
	while (n--) {
		int a;

		scanf("%d", &a), a--;
		bad[a] = 1;
	}
	scanf("%d", &m);
	cnt = 0;
	while (m--) {
		int k, good;

		scanf("%d", &k);
		good = 1;
		while (k--) {
			int a;

			scanf("%d", &a), a--;
			if (bad[a])
				good = 0;
		}
		if (good)
			cnt++;
	}
	printf("%d\n", cnt);
	return 0;
}

Compilation message (stderr)

Main.c: In function 'main':
Main.c:9:2: warning: ignoring return value of 'scanf' declared with attribute 'warn_unused_result' [-Wunused-result]
    9 |  scanf("%d", &n);
      |  ^~~~~~~~~~~~~~~
Main.c:13:3: warning: ignoring return value of 'scanf' declared with attribute 'warn_unused_result' [-Wunused-result]
   13 |   scanf("%d", &a), a--;
      |   ^~~~~~~~~~~~~~~
Main.c:16:2: warning: ignoring return value of 'scanf' declared with attribute 'warn_unused_result' [-Wunused-result]
   16 |  scanf("%d", &m);
      |  ^~~~~~~~~~~~~~~
Main.c:21:3: warning: ignoring return value of 'scanf' declared with attribute 'warn_unused_result' [-Wunused-result]
   21 |   scanf("%d", &k);
      |   ^~~~~~~~~~~~~~~
Main.c:26:4: warning: ignoring return value of 'scanf' declared with attribute 'warn_unused_result' [-Wunused-result]
   26 |    scanf("%d", &a), a--;
      |    ^~~~~~~~~~~~~~~
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...