QOJ.ac
QOJ
ID | Problem | Submitter | Result | Time | Memory | Language | File size | Submit time | Judge time |
---|---|---|---|---|---|---|---|---|---|
#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.
Details
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); | ~~~~~^~~~~~~~~~~~~~~~