QOJ.ac

QOJ

IDProblemSubmitterResultTimeMemoryLanguageFile sizeSubmit timeJudge time
#874166#9683. 士兵DerrickLoCompile Error//C++201.7kb2025-01-27 17:41:562025-01-27 17:41:56

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;