結果

問題 No.345 最小チワワ問題
ユーザー Tsukasa_TypeTsukasa_Type
提出日時 2018-02-10 15:47:57
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 676 bytes
コンパイル時間 2,223 ms
コンパイル使用メモリ 74,432 KB
実行使用メモリ 54,116 KB
最終ジャッジ日時 2024-10-14 13:43:20
合計ジャッジ時間 6,752 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 107 ms
40,948 KB
testcase_01 AC 112 ms
41,240 KB
testcase_02 AC 112 ms
41,216 KB
testcase_03 AC 113 ms
40,964 KB
testcase_04 AC 108 ms
41,160 KB
testcase_05 WA -
testcase_06 AC 108 ms
41,288 KB
testcase_07 AC 126 ms
40,980 KB
testcase_08 AC 110 ms
41,080 KB
testcase_09 AC 108 ms
41,228 KB
testcase_10 AC 117 ms
41,276 KB
testcase_11 AC 103 ms
39,656 KB
testcase_12 AC 123 ms
41,208 KB
testcase_13 AC 113 ms
40,960 KB
testcase_14 AC 121 ms
41,464 KB
testcase_15 AC 114 ms
41,180 KB
testcase_16 AC 101 ms
39,808 KB
testcase_17 AC 102 ms
40,236 KB
testcase_18 WA -
testcase_19 AC 117 ms
41,384 KB
testcase_20 AC 116 ms
41,328 KB
testcase_21 AC 118 ms
40,956 KB
testcase_22 AC 114 ms
40,960 KB
testcase_23 AC 102 ms
40,048 KB
testcase_24 AC 104 ms
40,184 KB
testcase_25 AC 117 ms
41,132 KB
testcase_26 WA -
testcase_27 WA -
testcase_28 AC 113 ms
41,088 KB
testcase_29 AC 113 ms
40,940 KB
testcase_30 AC 113 ms
41,080 KB
testcase_31 AC 114 ms
41,076 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

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