結果

問題 No.345 最小チワワ問題
ユーザー jimanojimano
提出日時 2018-01-21 15:31:12
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 726 bytes
コンパイル時間 3,313 ms
コンパイル使用メモリ 73,484 KB
実行使用メモリ 37,136 KB
最終ジャッジ日時 2024-06-07 15:09:54
合計ジャッジ時間 5,968 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 53 ms
36,880 KB
testcase_01 AC 53 ms
36,644 KB
testcase_02 AC 52 ms
36,868 KB
testcase_03 AC 51 ms
36,676 KB
testcase_04 AC 52 ms
36,820 KB
testcase_05 AC 53 ms
36,896 KB
testcase_06 AC 51 ms
36,828 KB
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 AC 51 ms
37,040 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 AC 51 ms
36,800 KB
testcase_15 AC 52 ms
37,016 KB
testcase_16 AC 51 ms
37,060 KB
testcase_17 AC 53 ms
37,128 KB
testcase_18 AC 51 ms
37,068 KB
testcase_19 AC 51 ms
37,044 KB
testcase_20 AC 52 ms
36,812 KB
testcase_21 WA -
testcase_22 AC 53 ms
36,980 KB
testcase_23 AC 52 ms
36,948 KB
testcase_24 AC 53 ms
37,072 KB
testcase_25 AC 52 ms
36,796 KB
testcase_26 AC 52 ms
37,136 KB
testcase_27 AC 52 ms
36,968 KB
testcase_28 WA -
testcase_29 AC 53 ms
36,880 KB
testcase_30 AC 53 ms
36,956 KB
testcase_31 WA -
権限があれば一括ダウンロードができます

ソースコード

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);

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