QOJ.ac
QOJ
ID | 题目 | 提交者 | 结果 | 用时 | 内存 | 语言 | 文件大小 | 提交时间 | 测评时间 |
---|---|---|---|---|---|---|---|---|---|
#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.
詳細信息
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])); | ~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~