結果

問題 No.345 最小チワワ問題
ユーザー TatsuDXTatsuDX
提出日時 2016-09-03 15:00:57
言語 Java21
(openjdk 21)
結果
AC  
実行時間 126 ms / 2,000 ms
コード長 471 bytes
コンパイル時間 3,441 ms
コンパイル使用メモリ 74,804 KB
実行使用メモリ 41,624 KB
最終ジャッジ日時 2024-09-25 11:52:43
合計ジャッジ時間 7,910 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 117 ms
41,176 KB
testcase_01 AC 114 ms
41,084 KB
testcase_02 AC 123 ms
41,268 KB
testcase_03 AC 99 ms
39,804 KB
testcase_04 AC 102 ms
40,256 KB
testcase_05 AC 117 ms
41,460 KB
testcase_06 AC 113 ms
41,356 KB
testcase_07 AC 114 ms
41,220 KB
testcase_08 AC 111 ms
40,820 KB
testcase_09 AC 114 ms
41,108 KB
testcase_10 AC 102 ms
39,896 KB
testcase_11 AC 120 ms
41,032 KB
testcase_12 AC 106 ms
40,204 KB
testcase_13 AC 126 ms
41,624 KB
testcase_14 AC 106 ms
40,032 KB
testcase_15 AC 112 ms
40,928 KB
testcase_16 AC 105 ms
40,308 KB
testcase_17 AC 117 ms
41,324 KB
testcase_18 AC 122 ms
41,052 KB
testcase_19 AC 114 ms
41,016 KB
testcase_20 AC 116 ms
41,208 KB
testcase_21 AC 115 ms
41,108 KB
testcase_22 AC 112 ms
41,040 KB
testcase_23 AC 120 ms
41,248 KB
testcase_24 AC 114 ms
41,336 KB
testcase_25 AC 109 ms
40,624 KB
testcase_26 AC 122 ms
41,128 KB
testcase_27 AC 114 ms
41,148 KB
testcase_28 AC 118 ms
41,212 KB
testcase_29 AC 102 ms
40,124 KB
testcase_30 AC 104 ms
40,032 KB
testcase_31 AC 106 ms
41,212 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);
			if(b > 0){
				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