QOJ.ac
QOJ
ID | 题目 | 提交者 | 结果 | 用时 | 内存 | 语言 | 文件大小 | 提交时间 | 测评时间 |
---|---|---|---|---|---|---|---|---|---|
#762707 | #5312. Levenshtein Distance | ZhangYiDe | Compile Error | / | / | C++14 | 1.6kb | 2024-11-19 16:18:34 | 2024-11-19 16:18:34 |
Due to the privacy settings of the submitter, you are not allowed to view this code.
详细
answer.code: In function ‘int main()’: answer.code:46:71: error: ‘w’ was not declared in this scope 46 | f[i+1][j+k]=max(f[i+1][j+k],f[i][j+k]+w); // exchange | ^ answer.code:35:14: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 35 | scanf("%s%s",s+1,t+1); | ~~~~~^~~~~~~~~~~~~~~~