結果

問題 No.345 最小チワワ問題
ユーザー h_tyokinuhatah_tyokinuhata
提出日時 2016-02-27 22:58:15
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 777 bytes
コンパイル時間 7,510 ms
コンパイル使用メモリ 74,092 KB
実行使用メモリ 54,472 KB
最終ジャッジ日時 2024-09-24 11:54:37
合計ジャッジ時間 7,415 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 123 ms
54,052 KB
testcase_01 AC 124 ms
54,020 KB
testcase_02 AC 120 ms
54,300 KB
testcase_03 AC 125 ms
53,992 KB
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 AC 126 ms
54,184 KB
testcase_08 AC 124 ms
54,040 KB
testcase_09 AC 109 ms
52,728 KB
testcase_10 AC 122 ms
54,160 KB
testcase_11 AC 125 ms
54,004 KB
testcase_12 AC 112 ms
52,668 KB
testcase_13 AC 114 ms
52,916 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 AC 124 ms
53,972 KB
testcase_18 WA -
testcase_19 AC 124 ms
53,884 KB
testcase_20 AC 126 ms
54,168 KB
testcase_21 AC 125 ms
53,932 KB
testcase_22 AC 124 ms
54,136 KB
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 AC 121 ms
53,888 KB
testcase_28 AC 109 ms
52,768 KB
testcase_29 WA -
testcase_30 WA -
testcase_31 AC 123 ms
54,072 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, min = Integer.MAX_VALUE;
		
		while(i < charS.length) {
			if(charS[i] == 'c') {
				for(int j = i + 1; j < charS.length; j++) {
					if(charS[j] == 'w') {
						cnt++;
						
						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;
				flag = 0;
			} else {
				i++;
			}
		}
		
		if(min == Integer.MAX_VALUE) {
			System.out.println(-1);	
		} else {
			System.out.println(min);
		}
	}
}
0