SWEA 1289元のメモリを復元
589 ワード
問題が読めさえすれば、実施は難しくない.
import java.util.Scanner;
import java.io.FileInputStream;
class Solution
{
public static void main(String args[]) throws Exception
{
Scanner sc = new Scanner(System.in);
int T;
T=sc.nextInt();
for(int test_case = 1; test_case <= T; test_case++)
{
char[] c = sc.next().toCharArray();
int count = 0;
if(c[0] == 49
) count++;
for(int i = 0; i < c.length - 1; i++) {
if(c[i] != c[i+1]) {
count++;
}
}
System.out.printf("#%d %d\n", test_case, count);
}
}
}
Reference
この問題について(SWEA 1289元のメモリを復元), 我々は、より多くの情報をここで見つけました https://velog.io/@mraz0210/SWEA1289-원재의-메모리-복구하기テキストは自由に共有またはコピーできます。ただし、このドキュメントのURLは参考URLとして残しておいてください。
Collection and Share based on the CC Protocol