실행 실패 (제출 코드 컴파일 에러)
Main.c: In function ‘main’: Main.c:50:19: warning: initialization of ‘int *’ from incompatible pointer type ‘long int *’ [-Wincompatible-pointer-types] 50 | int* yp = &y; | ^ Main.c:56:17: error: ‘else’ without a previous ‘if’ 56 | else if(y!=0){ | ^~~~ Main.c:58:39: error: ‘i’ undeclared (first use in this function) 58 | skip[(i - min) + y * j] = -1; | ^ Main.c:58:39: note: each undeclared identifier is reported only once for each function it appears in Main.c:25:16: warning: unused variable ‘sqsqmax’ [-Wunused-variable] 25 | double sqsqmax = sqrt(sqmax); | ^~~~~~~ Main.c: At top level: Main.c:63:16: error: expected declaration specifiers or ‘...’ before string constant 63 | printf("%d", count); | ^~~~ Main.c:63:22: error: unknown type name ‘count’ 63 | printf("%d", count); | ^~~~~ Main.c:64:1: error: expected identifier or ‘(’ before ‘}’ token 64 | } | ^ Main.c: In function ‘main’: Main.c:23:9: warning: ignoring return value of ‘scanf’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 23 | scanf("%llu %llu", &min, &max); | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
정답 개수:
-
틀린 개수:
-
실행 실패 개수:
-
반례를 발견하지 못했습니다.