Link : judge.koreatech.ac.kr/problem.php?id=1025
Python
더보기
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
from sys import stdin
quest_cnt = int(stdin.readline().strip())
for _ in range(quest_cnt):
data = stdin.readline().strip()
length = len(data)
pres = 1
max = 0
if length != 1:
for i in range(1, length):
if data[i] == data[i - 1]:
pres += 1
else:
if pres > max:
max = pres
pres = 1
if pres > max:
max = pres
pres = 1
print(length - max)
else:
print('0')
|
cs |
FeedBack
cjw.git@gmail.com
'알고리즘 > 소스코드' 카테고리의 다른 글
KOREATECH 1030: 한번 주식 거래하기 (0) | 2020.12.10 |
---|---|
KOREATECH 1027: 인접한 문자 제거하기 HARD (0) | 2020.12.10 |
KOREATECH 1021: 연속된 최장 길이 (0) | 2020.12.10 |
KOREATECH 1019: 숫자 바꿔치기 (0) | 2020.12.10 |
KOREATECH 1018: 문자열 거리 최소화 하기 (0) | 2020.12.10 |
댓글