예시로 ABRACADABRA , ECADADABR에 대해서 생각해보자
dp를 이중리스트로 선언하고 dp를 돌다가 같은 문자가 만나면 현재의 문자가 각 문자열의 이전문자와 연속되는 문자면 그 연쇡되는 문자의 개수에 +1을 해준다.
dp[i][j]=dp[i-1][j-1]+1
문자가 다르면 연속되지 않으므로 0으로 둔다.
import sys
input = sys.stdin.readline
s1=input().strip()
s2=input().strip()
dp=[[0]*(len(s2)+1) for _ in range(len(s1)+1)]
mx=0
for i in range(1,len(s1)+1):
for j in range(1,len(s2)+1):
if s1[i-1]==s2[j-1]:
dp[i][j]=dp[i-1][j-1]+1
mx=max(mx,dp[i][j])
print(mx)