정답 개수:
1
틀린 개수:
0
실행 실패 개수:
19
DADAD DADD
런타임 에러 (RTE)
stderr:
Traceback (most recent call last): File "Main.py", line 15, in <module> dp[i][j] = dp[i-1][j-1] +1 IndexError: list index out of range
4
BKIIKDFCD CKHEHGA
런타임 에러 (RTE)
stderr:
Traceback (most recent call last): File "Main.py", line 15, in <module> dp[i][j] = dp[i-1][j-1] +1 IndexError: list index out of range
1
AGIJAFG IFAIEHEGB
런타임 에러 (RTE)
stderr:
Traceback (most recent call last): File "Main.py", line 17, in <module> dp[i][j] = max(dp[i-1][j], dp[i][j-1]) IndexError: list index out of range
3