QOJ.ac
QOJ
ID | Problem | Submitter | Result | Time | Memory | Language | File size | Submit time | Judge time |
---|---|---|---|---|---|---|---|---|---|
#616689 | #9449. New School Term | ucup-team3628# | Compile Error | / | / | C++20 | 3.3kb | 2024-10-06 10:16:40 | 2024-10-06 10:16:40 |
Due to the privacy settings of the submitter, you are not allowed to view this code.
Details
answer.code:14:1: error: ‘bitset’ does not name a type 14 | bitset <N> dp[N]; | ^~~~~~ answer.code: In function ‘int main()’: answer.code:77:3: error: ‘dp’ was not declared in this scope; did you mean ‘p’? 77 | dp[(int) cand.size()][0] = 1; | ^~ | p answer.code:22:35: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 22 | for (auto &[u, v] : edges) scanf("%d %d", &u, &v); | ~~~~~^~~~~~~~~~~~~~~~~