728x90
https://www.acmicpc.net/problem/1105
l, r = input().split()
result = 0
if '8' not in l or '8' not in r or len(l)!=len(r):
print(result)
else:
for i in range(len(l)):
if l[i] == r[i]:
if l[i] == '8':
result += 1
else:
break
print(result)
반응형
'전.py' 카테고리의 다른 글
[python] 프로그래머스 신고 결과 받기 (Lv.1) (0) | 2022.01.26 |
---|---|
[python] 프로그래머스 폰켓몬 (Lv.1) (0) | 2022.01.26 |
[python] 백준 10828 스택 (0) | 2022.01.24 |
[python] 백준 10845 큐 (0) | 2022.01.24 |
[python] 백준 10866 덱 (0) | 2022.01.24 |