QOJ.ac
QOJ
ID | Problem | Submitter | Result | Time | Memory | Language | File size | Submit time | Judge time |
---|---|---|---|---|---|---|---|---|---|
#516555 | #5610. It's About Time | ZhangYiDe | Compile Error | / | / | C++11 | 998b | 2024-08-12 18:37:22 | 2024-08-12 18:37:23 |
Due to the privacy settings of the submitter, you are not allowed to view this code.
Details
answer.code: In function ‘int main()’: answer.code:7:5: error: ‘uint32_t’ was not declared in this scope 7 | uint32_t | ^~~~~~~~ answer.code:3:1: note: ‘uint32_t’ is defined in header ‘<cstdint>’; did you forget to ‘#include <cstdint>’? 2 | #include <cmath> +++ |+#include <cstdint> 3 | answer.code:18:12: error: ‘r’ was not declared in this scope 18 | cin >> r >> s >> h; | ^ answer.code:18:17: error: ‘s’ was not declared in this scope 18 | cin >> r >> s >> h; | ^ answer.code:18:22: error: ‘h’ was not declared in this scope 18 | cin >> r >> s >> h; | ^ answer.code:34:21: error: ‘best’ was not declared in this scope 34 | best[0] = n1; | ^~~~ answer.code:40:13: error: ‘best’ was not declared in this scope 40 | cout << best[0] << ' ' << best[1] << ' ' << best[2] << endl; | ^~~~