QOJ.ac
QOJ
ID | 题目 | 提交者 | 结果 | 用时 | 内存 | 语言 | 文件大小 | 提交时间 | 测评时间 |
---|---|---|---|---|---|---|---|---|---|
#874166 | #9683. 士兵 | DerrickLo | Compile Error | / | / | C++20 | 1.7kb | 2025-01-27 17:41:56 | 2025-01-27 17:41:56 |
Due to the privacy settings of the submitter, you are not allowed to view this code.
详细
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;