QOJ.ac
QOJ
ID | 题目 | 提交者 | 结果 | 用时 | 内存 | 语言 | 文件大小 | 提交时间 | 测评时间 |
---|---|---|---|---|---|---|---|---|---|
#624363 | #6599. The Grand Tournament | qiuzx | Compile Error | / | / | C++20 | 4.8kb | 2024-10-09 15:40:14 | 2024-10-09 15:40:15 |
Due to the privacy settings of the submitter, you are not allowed to view this code.
詳細信息
answer.code:5:30: warning: ‘-fwhole-program’ is not an option that controls warnings [-Wpragmas] 5 | #pragma GCC diagnostic error "-fwhole-program" | ^~~~~~~~~~~~~~~~~ answer.code:6:30: warning: ‘-fcse-skip-blocks’ is not an option that controls warnings [-Wpragmas] 6 | #pragma GCC diagnostic error "-fcse-skip-blocks" | ^~~~~~~~~~~~~~~~~~~ answer.code:7:30: warning: ‘-funsafe-loop-optimizations’ is not an option that controls warnings [-Wpragmas] 7 | #pragma GCC diagnostic error "-funsafe-loop-optimizations" | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~ answer.code: In function ‘Node getinter(Edge, Edge)’: answer.code:51:42: error: ‘lINF’ was not declared in this scope; did you mean ‘LINF’? 51 | if(fabs(s1-s2)<eps) return Node(-lINF,-LINF); | ^~~~ | LINF answer.code: In function ‘int main()’: answer.code:104:14: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 104 | scanf("%d",&T); | ~~~~~^~~~~~~~~ answer.code:108:30: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 108 | scanf("%d%d%d%d",&lx[i],&ly[i],&rx[i],&ry[i]); | ~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~