728x90
s=input()
cnt=[0,0]
temp=0
for i in range(len(s)):
if s[i]=="0" and s[i]!=temp:
cnt[0]+=1
temp=s[i]
elif s[i]=="1" and s[i]!=temp:
cnt[1]+=1
temp=s[i]
print(min(cnt))
반응형
'전.py' 카테고리의 다른 글
백준 8892 팰린드롬 (0) | 2020.12.17 |
---|---|
백준 1284 집 주소 (0) | 2020.12.17 |
백준 17204 죽음의 게임 (0) | 2020.12.17 |
백준 1669 멍멍이 쓰다듬기(실패) (0) | 2020.12.17 |
백준 5532 방학 숙제 (0) | 2020.12.16 |