結果

問題 No.345 最小チワワ問題
ユーザー jimanojimano
提出日時 2018-01-21 15:34:11
言語 Java21
(openjdk 21)
結果
AC  
実行時間 56 ms / 2,000 ms
コード長 758 bytes
コンパイル時間 3,562 ms
コンパイル使用メモリ 74,576 KB
実行使用メモリ 50,420 KB
最終ジャッジ日時 2024-09-25 12:11:00
合計ジャッジ時間 6,274 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 54 ms
50,000 KB
testcase_01 AC 53 ms
49,896 KB
testcase_02 AC 53 ms
49,896 KB
testcase_03 AC 53 ms
50,256 KB
testcase_04 AC 54 ms
50,356 KB
testcase_05 AC 56 ms
50,272 KB
testcase_06 AC 55 ms
49,916 KB
testcase_07 AC 54 ms
50,384 KB
testcase_08 AC 54 ms
49,964 KB
testcase_09 AC 53 ms
50,028 KB
testcase_10 AC 53 ms
50,112 KB
testcase_11 AC 53 ms
50,260 KB
testcase_12 AC 54 ms
50,248 KB
testcase_13 AC 53 ms
50,136 KB
testcase_14 AC 54 ms
50,328 KB
testcase_15 AC 53 ms
50,140 KB
testcase_16 AC 54 ms
50,116 KB
testcase_17 AC 53 ms
50,256 KB
testcase_18 AC 54 ms
50,276 KB
testcase_19 AC 53 ms
49,900 KB
testcase_20 AC 54 ms
50,420 KB
testcase_21 AC 53 ms
49,932 KB
testcase_22 AC 54 ms
50,312 KB
testcase_23 AC 53 ms
50,264 KB
testcase_24 AC 54 ms
50,392 KB
testcase_25 AC 54 ms
49,920 KB
testcase_26 AC 54 ms
49,924 KB
testcase_27 AC 53 ms
50,364 KB
testcase_28 AC 53 ms
50,276 KB
testcase_29 AC 54 ms
50,372 KB
testcase_30 AC 53 ms
49,912 KB
testcase_31 AC 53 ms
49,960 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package me.yukicoder.lv1;
import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;


public class No0345 {
	public static void main(String[] args) {
		try (BufferedReader br = new BufferedReader(new InputStreamReader(System.in))) {
			char[] array = br.readLine().toCharArray();
			int ans = Integer.MAX_VALUE;

			for (int i = 0; i < array.length; i++) {
				if (array[i] == 'c') {
					// wwを探す
					int count = 0;
					for (int j = i; j < array.length; j++) {
						if (array[j] == 'w') {
							count++;
						}
						if (count == 2)
							ans = Math.min(ans, j - i + 1);
					}
				}
			}
			System.out.println(ans != Integer.MAX_VALUE ? ans : -1);

		} catch (IOException e) {
			e.printStackTrace();
		}
	}
}
0