QOJ.ac
QOJ
ID | Problem | Submitter | Result | Time | Memory | Language | File size | Submit time | Judge time |
---|---|---|---|---|---|---|---|---|---|
#874165 | #9683. 士兵 | DerrickLo | Compile Error | / | / | C++14 | 1.7kb | 2025-01-27 17:41:32 | 2025-01-27 17:41:32 |
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:54:46: error: ‘LLONG_MIN’ was not declared in this scope 54 | ll max_stack_val = stk.empty() ? LLONG_MIN : stk.back().max_val; | ^~~~~~~~~ answer.code:4:1: note: ‘LLONG_MIN’ is defined in header ‘<climits>’; this is probably fixable by adding ‘#include <climits>’ 3 | #include <algorithm> +++ |+#include <climits> 4 | using namespace std;