QOJ.ac
QOJ
ID | 题目 | 提交者 | 结果 | 用时 | 内存 | 语言 | 文件大小 | 提交时间 | 测评时间 |
---|---|---|---|---|---|---|---|---|---|
#751341 | #9565. Birthday Gift | ucup-team2454# | Compile Error | / | / | C++20 | 837b | 2024-11-15 18:13:09 | 2024-11-15 18:13:10 |
Due to the privacy settings of the submitter, you are not allowed to view this code.
詳細信息
answer.code:2:8: error: ‘N’ was not declared in this scope 2 | char s[N]; | ^ answer.code:3:7: error: ‘N’ was not declared in this scope 3 | int f[N][2]; | ^ answer.code: In function ‘int main()’: answer.code:6:5: error: ‘cin’ was not declared in this scope 6 | cin>>T; | ^~~ answer.code:8:21: error: ‘s’ was not declared in this scope 8 | scanf("%s",(s+1)); | ^ answer.code:8:9: error: ‘scanf’ was not declared in this scope 8 | scanf("%s",(s+1)); | ^~~~~ answer.code:9:15: error: ‘strlen’ was not declared in this scope 9 | int n=strlen(s+1); | ^~~~~~ answer.code:1:1: note: ‘strlen’ is defined in header ‘<cstring>’; did you forget to ‘#include <cstring>’? +++ |+#include <cstring> 1 | answer.code:10:9: error: ‘f’ was not declared in this scope 10 | f[0][0]=f[0][1]=0; | ^ answer.code:14:25: error: ‘min’ was not declared in this scope; did you mean ‘main’? 14 | f[i][1]=min(f[i][1],f[i-1][0]+1); | ^~~ | main answer.code:21:25: error: ‘min’ was not declared in this scope; did you mean ‘main’? 21 | f[i][0]=min(f[i][0],f[i-1][1]+1); | ^~~ | main answer.code:28:9: error: ‘cout’ was not declared in this scope 28 | cout<<min(f[n][0],f[n][1])<<"\n"; | ^~~~ answer.code:28:15: error: ‘min’ was not declared in this scope; did you mean ‘main’? 28 | cout<<min(f[n][0],f[n][1])<<"\n"; | ^~~ | main