QOJ.ac
QOJ
ID | 题目 | 提交者 | 结果 | 用时 | 内存 | 语言 | 文件大小 | 提交时间 | 测评时间 |
---|---|---|---|---|---|---|---|---|---|
#76977 | #2206. Decomposition | Minneapolis | Compile Error | / | / | C++17 | 9.0kb | 2023-02-13 00:00:53 | 2023-02-13 00:00:56 |
Due to the privacy settings of the submitter, you are not allowed to view this code.
詳細信息
answer.code: In function ‘int main()’: answer.code:294:3: error: ‘scanf’ was not declared in this scope 294 | scanf("%d", &T); | ^~~~~ answer.code:316:5: error: ‘printf’ was not declared in this scope 316 | printf("%lld\n", dp[n]); | ^~~~~~ answer.code:4:1: note: ‘printf’ is defined in header ‘<cstdio>’; did you forget to ‘#include <cstdio>’? 3 | #include <algorithm> +++ |+#include <cstdio> 4 | #include <functional>