結果

問題 No.345 最小チワワ問題
ユーザー ぴろずぴろず
提出日時 2016-02-26 22:24:35
言語 Java21
(openjdk 21)
結果
AC  
実行時間 135 ms / 2,000 ms
コード長 716 bytes
コンパイル時間 2,050 ms
コンパイル使用メモリ 75,092 KB
実行使用メモリ 41,836 KB
最終ジャッジ日時 2024-09-25 11:23:10
合計ジャッジ時間 7,111 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 124 ms
41,184 KB
testcase_01 AC 123 ms
41,092 KB
testcase_02 AC 123 ms
41,168 KB
testcase_03 AC 121 ms
41,168 KB
testcase_04 AC 124 ms
41,408 KB
testcase_05 AC 123 ms
41,124 KB
testcase_06 AC 122 ms
41,056 KB
testcase_07 AC 123 ms
41,112 KB
testcase_08 AC 126 ms
41,008 KB
testcase_09 AC 111 ms
41,496 KB
testcase_10 AC 131 ms
41,420 KB
testcase_11 AC 129 ms
41,040 KB
testcase_12 AC 131 ms
41,836 KB
testcase_13 AC 122 ms
41,384 KB
testcase_14 AC 135 ms
41,136 KB
testcase_15 AC 129 ms
41,024 KB
testcase_16 AC 128 ms
41,312 KB
testcase_17 AC 122 ms
41,340 KB
testcase_18 AC 131 ms
41,700 KB
testcase_19 AC 121 ms
41,444 KB
testcase_20 AC 124 ms
41,396 KB
testcase_21 AC 120 ms
41,608 KB
testcase_22 AC 124 ms
41,052 KB
testcase_23 AC 126 ms
41,188 KB
testcase_24 AC 108 ms
40,096 KB
testcase_25 AC 121 ms
41,208 KB
testcase_26 AC 118 ms
41,080 KB
testcase_27 AC 123 ms
41,240 KB
testcase_28 AC 123 ms
41,312 KB
testcase_29 AC 120 ms
40,956 KB
testcase_30 AC 123 ms
41,208 KB
testcase_31 AC 122 ms
41,300 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package no345;

import java.util.Scanner;

public class Main {

	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		String s = sc.next();
		int n = s.length();
		int min = Integer.MAX_VALUE;
		for(int i=0;i<n;i++) {
			for(int j=i;j<n;j++) {
				String t = s.substring(i, j + 1);
				if (isChiwawaSequence(t)) {
					min = Math.min(min, j - i + 1);
				}
			}
		}
		System.out.println(min == Integer.MAX_VALUE ? -1 : min);
	}
	
	public static boolean isChiwawaSequence(String s) {
		int state = 0;
		for(int i=0;i<s.length();i++) {
			if (state == 0 && s.charAt(i) == 'c') {
				state++;
			}else if(state >= 1 && s.charAt(i) == 'w') {
				state++;
			}
		}
		return state >= 3;
	}

}
0