QOJ.ac
QOJ
ID | Problem | Submitter | Result | Time | Memory | Language | File size | Submit time | Judge time |
---|---|---|---|---|---|---|---|---|---|
#731235 | #9520. Concave Hull | ucup-team1132 | Compile Error | / | / | C++14 | 2.9kb | 2024-11-10 00:48:59 | 2024-11-10 00:48:59 |
Due to the privacy settings of the submitter, you are not allowed to view this code.
Details
answer.code: In function ‘void solve()’: answer.code:120:17: error: ‘LLONG_MAX’ was not declared in this scope 120 | ll minn=LLONG_MAX; | ^~~~~~~~~ answer.code:7:1: note: ‘LLONG_MAX’ is defined in header ‘<climits>’; did you forget to ‘#include <climits>’? 6 | #include <algorithm> +++ |+#include <climits> 7 | using namespace std; answer.code:97:14: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 97 | scanf("%d",&n); | ~~~~~^~~~~~~~~ answer.code:99:22: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 99 | scanf("%lld%lld",&p[i].x,&p[i].y); | ~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~