https://www.acmicpc.net/problem/1439
import java.util.Scanner;
public class mar14 {
public static void main(String[] args) {
// TODO Auto-generated method stub
Scanner s=new Scanner(System.in);
String word=s.next();
int length=word.length();
int count[]=new int[2];
count[word.charAt(0)-48]++;
for(int i=0;i<length-1;i++) {
if(word.charAt(i)!=word.charAt(i+1)) {
count[word.charAt(i+1)-48]++;
}
}
System.out.print(Math.min(count[0], count[1]));
}
}
'JAVA' 카테고리의 다른 글
[백준/자바] 2606번 바이러스 (0) | 2022.03.21 |
---|---|
[백준/자바] 1475번 방 번호 (0) | 2022.03.16 |
[백준/자바] 1934번 최소공배수 (0) | 2022.03.11 |
[백준/자바] 1427번 소트인사이드 (0) | 2022.03.10 |
[백준/자바] 1316번 그룹 단어 체커 (0) | 2022.03.08 |
댓글