結果

問題 No.345 最小チワワ問題
ユーザー YukimotoPGYukimotoPG
提出日時 2019-02-14 16:35:36
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 753 bytes
コンパイル時間 2,056 ms
コンパイル使用メモリ 77,760 KB
実行使用メモリ 54,356 KB
最終ジャッジ日時 2024-09-13 11:27:46
合計ジャッジ時間 7,060 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 124 ms
53,860 KB
testcase_01 AC 124 ms
54,016 KB
testcase_02 AC 111 ms
52,588 KB
testcase_03 AC 123 ms
53,908 KB
testcase_04 AC 123 ms
53,868 KB
testcase_05 WA -
testcase_06 AC 121 ms
53,936 KB
testcase_07 AC 124 ms
54,020 KB
testcase_08 AC 124 ms
53,820 KB
testcase_09 AC 122 ms
54,248 KB
testcase_10 AC 114 ms
52,780 KB
testcase_11 AC 121 ms
53,836 KB
testcase_12 AC 124 ms
53,932 KB
testcase_13 AC 126 ms
53,852 KB
testcase_14 AC 128 ms
53,956 KB
testcase_15 AC 126 ms
54,060 KB
testcase_16 AC 125 ms
53,688 KB
testcase_17 AC 124 ms
54,148 KB
testcase_18 WA -
testcase_19 AC 127 ms
54,140 KB
testcase_20 AC 124 ms
54,040 KB
testcase_21 AC 124 ms
53,848 KB
testcase_22 AC 125 ms
54,132 KB
testcase_23 AC 127 ms
54,068 KB
testcase_24 AC 122 ms
54,228 KB
testcase_25 AC 124 ms
53,916 KB
testcase_26 WA -
testcase_27 WA -
testcase_28 AC 127 ms
53,964 KB
testcase_29 AC 127 ms
53,852 KB
testcase_30 AC 125 ms
54,056 KB
testcase_31 AC 121 ms
53,968 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

class Main {
	static Scanner sc = new Scanner(System.in);
	public static void main(String[] args) {
		
		String s = sc.next();
		
		String mode = "c";
		int min = Integer.MAX_VALUE;
		
		int L = -1; int R = -1;
		
		
		for (int i=0; i<s.length(); i++) {
			if (mode.equals("c")) {
				if (s.charAt(i) == 'c') {
					L = i;
					mode = "w";
				}
			}
			else if (mode.equals("w")) {
				if (s.charAt(i) == 'w') {
					mode = "ww";
				}
				else if (s.charAt(i) == 'c') {
					L = i;
				}
			}
			else if (mode.equals("ww")) {
				if (s.charAt(i) == 'w') {
					R = i;
					min = Math.min(min, R-L+1);
					mode = "c";
				}
			}
//			System.out.println(L+":"+R);
		}
		
		System.out.println(min==Integer.MAX_VALUE?-1:min);
		
	}
}
0