QOJ.ac
QOJ
ID | Problem | Submitter | Result | Time | Memory | Language | File size | Submit time | Judge time |
---|---|---|---|---|---|---|---|---|---|
#362271 | #8507. Clever Cell Choices | ucup-team293# | Compile Error | / | / | C++14 | 3.7kb | 2024-03-23 14:50:01 | 2024-03-23 14:50:02 |
Due to the privacy settings of the submitter, you are not allowed to view this code.
Details
answer.code: In function ‘bool bfs_hk()’: answer.code:31:10: error: ‘INT_MAX’ was not declared in this scope 31 | dm = INT_MAX; | ^~~~~~~ answer.code:6:1: note: ‘INT_MAX’ is defined in header ‘<climits>’; did you forget to ‘#include <climits>’? 5 | #include <queue> +++ |+#include <climits> 6 | using namespace std; answer.code: In function ‘int main()’: answer.code:109:14: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 109 | scanf("%s", s + 1); | ~~~~~^~~~~~~~~~~~~