結果

問題 No.345 最小チワワ問題
ユーザー TatsuDXTatsuDX
提出日時 2016-09-03 14:56:32
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 428 bytes
コンパイル時間 3,483 ms
コンパイル使用メモリ 75,600 KB
実行使用メモリ 56,160 KB
最終ジャッジ日時 2024-11-15 18:40:22
合計ジャッジ時間 7,933 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 102 ms
39,820 KB
testcase_01 AC 121 ms
41,308 KB
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 AC 123 ms
41,256 KB
testcase_06 AC 121 ms
41,176 KB
testcase_07 AC 119 ms
41,280 KB
testcase_08 AC 117 ms
41,376 KB
testcase_09 AC 121 ms
41,328 KB
testcase_10 AC 121 ms
41,200 KB
testcase_11 AC 120 ms
41,452 KB
testcase_12 WA -
testcase_13 AC 109 ms
40,048 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 AC 124 ms
41,136 KB
testcase_20 AC 122 ms
41,176 KB
testcase_21 WA -
testcase_22 AC 122 ms
41,652 KB
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 AC 122 ms
41,340 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);
			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