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