結果

問題 No.345 最小チワワ問題
ユーザー jimanojimano
提出日時 2018-01-21 16:32:48
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 734 bytes
コンパイル時間 3,604 ms
コンパイル使用メモリ 74,416 KB
実行使用メモリ 50,504 KB
最終ジャッジ日時 2024-06-07 15:14:39
合計ジャッジ時間 6,378 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 54 ms
50,312 KB
testcase_01 AC 56 ms
50,084 KB
testcase_02 AC 55 ms
50,312 KB
testcase_03 AC 53 ms
50,160 KB
testcase_04 AC 53 ms
50,060 KB
testcase_05 AC 54 ms
50,288 KB
testcase_06 AC 53 ms
50,244 KB
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 AC 53 ms
50,244 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 AC 54 ms
50,312 KB
testcase_15 AC 53 ms
50,256 KB
testcase_16 AC 53 ms
50,288 KB
testcase_17 AC 55 ms
50,344 KB
testcase_18 AC 54 ms
50,320 KB
testcase_19 AC 55 ms
50,284 KB
testcase_20 AC 54 ms
50,200 KB
testcase_21 WA -
testcase_22 AC 54 ms
49,716 KB
testcase_23 AC 53 ms
49,944 KB
testcase_24 AC 54 ms
50,316 KB
testcase_25 AC 54 ms
50,328 KB
testcase_26 AC 54 ms
50,504 KB
testcase_27 AC 55 ms
50,204 KB
testcase_28 WA -
testcase_29 AC 54 ms
49,736 KB
testcase_30 AC 54 ms
49,868 KB
testcase_31 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

package me.yukicoder.lv1;

import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;

public class No0345_2 {
	public static void main(String[] args) {
		try (BufferedReader br = new BufferedReader(new InputStreamReader(System.in))) {
			String str = br.readLine();
			int ans = Integer.MAX_VALUE;
			int idx = str.indexOf("c");

			while (idx != -1) {
				str = str.substring(idx + 1);
				int idxW1 = str.indexOf("w");
				int idxW2 = str.substring(idxW1 + 1).indexOf("w");
				int tmp = (idxW1 != -1 && idxW2 != -1) ? idxW1 + idxW2 + 3 : ans;
				ans = Math.min(ans, tmp);

				idx = str.indexOf("c");
			}
			System.out.println(ans);

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