QOJ.ac
QOJ
ID | Problem | Submitter | Result | Time | Memory | Language | File size | Submit time | Judge time |
---|---|---|---|---|---|---|---|---|---|
#118363 | #2596. Even Forest | ZhangYiDe | Compile Error | / | / | C++20 | 2.6kb | 2023-07-03 14:03:04 | 2023-07-03 14:03:06 |
Due to the privacy settings of the submitter, you are not allowed to view this code.
Details
answer.code:55:39: error: ‘ULLONG_MAX’ was not declared in this scope 55 | uniform_int_distribution<ull> dist(0, ULLONG_MAX);//use dist(rnd) | ^~~~~~~~~~ answer.code:19:1: note: ‘ULLONG_MAX’ is defined in header ‘<climits>’; did you forget to ‘#include <climits>’? 18 | #include <algorithm> +++ |+#include <climits> 19 | #include <functional>