結果

問題 No.345 最小チワワ問題
ユーザー TatsuDXTatsuDX
提出日時 2016-09-03 14:58:16
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 448 bytes
コンパイル時間 3,319 ms
コンパイル使用メモリ 74,520 KB
実行使用メモリ 56,412 KB
最終ジャッジ日時 2024-11-15 18:40:36
合計ジャッジ時間 8,369 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 124 ms
41,148 KB
testcase_01 AC 110 ms
40,120 KB
testcase_02 AC 126 ms
41,096 KB
testcase_03 AC 122 ms
41,416 KB
testcase_04 AC 123 ms
41,160 KB
testcase_05 AC 123 ms
41,156 KB
testcase_06 AC 122 ms
40,996 KB
testcase_07 AC 122 ms
40,948 KB
testcase_08 AC 124 ms
41,040 KB
testcase_09 AC 131 ms
41,128 KB
testcase_10 AC 125 ms
40,944 KB
testcase_11 AC 124 ms
41,152 KB
testcase_12 AC 124 ms
41,504 KB
testcase_13 AC 125 ms
41,428 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 AC 122 ms
41,316 KB
testcase_18 AC 125 ms
41,292 KB
testcase_19 AC 127 ms
53,872 KB
testcase_20 AC 124 ms
53,968 KB
testcase_21 AC 126 ms
54,004 KB
testcase_22 AC 126 ms
53,928 KB
testcase_23 WA -
testcase_24 AC 122 ms
41,052 KB
testcase_25 AC 123 ms
41,308 KB
testcase_26 AC 124 ms
41,132 KB
testcase_27 AC 122 ms
41,288 KB
testcase_28 AC 110 ms
40,160 KB
testcase_29 AC 122 ms
40,896 KB
testcase_30 WA -
testcase_31 AC 122 ms
41,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Test {
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);

		String s = sc.next();
		int a, b, c, min = 1000;
		a = s.indexOf('c');
		while(a >= 0){
			b = s.indexOf('w', a);
			c = s.indexOf('w', b+1);
			if(c > 0){
				min = Math.min(min, c-a+1);
			}
			a = s.indexOf('c', a+1);
		}
		if(min < 1000){
			System.out.println(min);
		} else {
			System.out.println(-1);
		}
	}
}
0