結果

問題 No.345 最小チワワ問題
ユーザー h_tyokinuhatah_tyokinuhata
提出日時 2016-02-27 23:08:29
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 933 bytes
コンパイル時間 2,440 ms
コンパイル使用メモリ 77,376 KB
実行使用メモリ 54,200 KB
最終ジャッジ日時 2024-09-24 11:53:37
合計ジャッジ時間 7,447 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 123 ms
53,876 KB
testcase_01 AC 122 ms
53,744 KB
testcase_02 AC 123 ms
53,960 KB
testcase_03 AC 123 ms
54,016 KB
testcase_04 AC 122 ms
53,844 KB
testcase_05 WA -
testcase_06 AC 120 ms
53,956 KB
testcase_07 AC 126 ms
53,852 KB
testcase_08 AC 110 ms
52,792 KB
testcase_09 AC 123 ms
54,200 KB
testcase_10 AC 124 ms
53,976 KB
testcase_11 AC 125 ms
53,940 KB
testcase_12 AC 126 ms
53,812 KB
testcase_13 AC 125 ms
54,012 KB
testcase_14 AC 123 ms
54,004 KB
testcase_15 AC 124 ms
53,964 KB
testcase_16 AC 124 ms
54,048 KB
testcase_17 AC 109 ms
53,976 KB
testcase_18 WA -
testcase_19 AC 123 ms
53,984 KB
testcase_20 AC 123 ms
53,888 KB
testcase_21 AC 109 ms
52,560 KB
testcase_22 AC 128 ms
53,960 KB
testcase_23 AC 124 ms
54,084 KB
testcase_24 AC 122 ms
53,896 KB
testcase_25 AC 109 ms
52,996 KB
testcase_26 WA -
testcase_27 AC 109 ms
52,856 KB
testcase_28 AC 122 ms
54,064 KB
testcase_29 AC 121 ms
53,908 KB
testcase_30 WA -
testcase_31 AC 122 ms
54,080 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		
		String S = sc.next();
		
		char[] charS = S.toCharArray();
		
		int i = 0, cnt = 0, flag = 0, cflag = 0, min = Integer.MAX_VALUE;
		
		while(i < charS.length) {
			if(charS[i] == 'c') {
				for(int j = i + 1; j < charS.length; j++) {
					if(charS[j] == 'c' && cflag == 0) {
						i = j;
					}
					if(charS[j] == 'w') {
						cnt++;
						
						if(cnt == 1) {
							cflag = 1;
						}
						
						if(cnt == 2) {
							if(j - i + 1 < min) {
								min = j - i + 1;
								charS = S.substring(j + 1).toCharArray();
								flag = 1;
							}
						} 
					}
				}
			}
		
			if(flag == 1) {
				i = 0;
				cnt = 0;
				cflag = 0;
				flag = 0;
			} else {
				cflag = 0;
				i++;
			}
		}
		
		if(min == Integer.MAX_VALUE) {
			System.out.println(-1);	
		} else {
			System.out.println(min);
		}
	}
}
0