QOJ.ac
QOJ
ID | 题目 | 提交者 | 结果 | 用时 | 内存 | 语言 | 文件大小 | 提交时间 | 测评时间 |
---|---|---|---|---|---|---|---|---|---|
#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.
详细
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); | ~~~~~^~~~~~~~~~~~~~~~~