본문 바로가기
알고리즘/소스코드

KOREATECH 1025: 단색이 좋아좋아

by cjw.git 2020. 12. 10.

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

  1.  

 

 

 

cjw.git@gmail.com

댓글