QOJ.ac
QOJ
ID | Problem | Submitter | Result | Time | Memory | Language | File size | Submit time | Judge time |
---|---|---|---|---|---|---|---|---|---|
#369372 | #6320. Parallel Processing (Hard) | ucup-team864 | Compile Error | / | / | C++14 | 1.3kb | 2024-03-28 04:51:23 | 2024-03-28 04:51:24 |
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:42:9: error: ‘memset’ was not declared in this scope 42 | memset(nd, -1, sizeof nd); | ^~~~~~ answer.code:8:1: note: ‘memset’ is defined in header ‘<cstring>’; did you forget to ‘#include <cstring>’? 7 | #include <cassert> +++ |+#include <cstring> 8 | answer.code:64:18: warning: structured bindings only available with ‘-std=c++17’ or ‘-std=gnu++17’ [-Wc++17-extensions] 64 | for(auto [x, y] : A) cout << y << ' ' << x << ' ' << y << '\n'; | ^