結果

問題 No.345 最小チワワ問題
ユーザー TatsuDXTatsuDX
提出日時 2016-09-03 15:00:11
言語 Java21
(openjdk 21)
結果
TLE  
実行時間 -
コード長 494 bytes
コンパイル時間 3,579 ms
コンパイル使用メモリ 77,820 KB
実行使用メモリ 88,220 KB
最終ジャッジ日時 2024-11-15 18:41:37
合計ジャッジ時間 60,398 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 118 ms
46,612 KB
testcase_01 AC 120 ms
82,808 KB
testcase_02 TLE -
testcase_03 TLE -
testcase_04 TLE -
testcase_05 AC 122 ms
46,528 KB
testcase_06 AC 123 ms
83,116 KB
testcase_07 AC 122 ms
46,540 KB
testcase_08 AC 123 ms
83,052 KB
testcase_09 AC 121 ms
46,556 KB
testcase_10 AC 121 ms
82,880 KB
testcase_11 AC 124 ms
46,364 KB
testcase_12 TLE -
testcase_13 AC 124 ms
46,428 KB
testcase_14 TLE -
testcase_15 TLE -
testcase_16 TLE -
testcase_17 TLE -
testcase_18 TLE -
testcase_19 AC 122 ms
46,580 KB
testcase_20 AC 119 ms
83,124 KB
testcase_21 TLE -
testcase_22 AC 122 ms
83,144 KB
testcase_23 TLE -
testcase_24 TLE -
testcase_25 TLE -
testcase_26 TLE -
testcase_27 TLE -
testcase_28 TLE -
testcase_29 TLE -
testcase_30 TLE -
testcase_31 AC 122 ms
88,220 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){
				continue;
			}
			c = s.indexOf('w', b+1);
			if(c < 0){
				continue;
			}
			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