QOJ.ac
QOJ
ID | Problem | Submitter | Result | Time | Memory | Language | File size | Submit time | Judge time |
---|---|---|---|---|---|---|---|---|---|
#70011 | #2113. Zbalansowane słowa | flower | Compile Error | / | / | C++98 | 8.9kb | 2023-01-06 20:11:03 | 2023-01-06 20:11:06 |
Due to the privacy settings of the submitter, you are not allowed to view this code.
Details
answer.code: In function ‘int main()’: answer.code:388:41: error: ‘min’ is not a member of ‘std’ 388 | printf("%d\n", solve(N, M, A, B, std::min(60, N))); | ^~~ answer.code:378:7: warning: ignoring return value of ‘int scanf(const char*, ...)’, declared with attribute warn_unused_result [-Wunused-result] 378 | scanf("%d", &T); | ~~~~~^~~~~~~~~~ answer.code:380:8: warning: ignoring return value of ‘int scanf(const char*, ...)’, declared with attribute warn_unused_result [-Wunused-result] 380 | scanf("%d %d", &N, &M); | ~~~~~^~~~~~~~~~~~~~~~~ answer.code:384:33: warning: ignoring return value of ‘int scanf(const char*, ...)’, declared with attribute warn_unused_result [-Wunused-result] 384 | for (i = 1; i <= M; i++) scanf("%d %d", &(A[i]), &(B[i])); | ~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~