結果

問題 No.345 最小チワワ問題
ユーザー fkwnw3_1243fkwnw3_1243
提出日時 2017-05-05 08:51:21
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 1,344 bytes
コンパイル時間 2,221 ms
コンパイル使用メモリ 76,416 KB
実行使用メモリ 52,388 KB
最終ジャッジ日時 2024-09-14 08:33:03
合計ジャッジ時間 5,060 ms
ジャッジサーバーID
(参考情報)
judge6 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 55 ms
50,132 KB
testcase_01 AC 56 ms
50,388 KB
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 AC 55 ms
49,920 KB
testcase_08 AC 55 ms
49,940 KB
testcase_09 AC 56 ms
50,292 KB
testcase_10 AC 57 ms
50,196 KB
testcase_11 AC 57 ms
49,872 KB
testcase_12 AC 56 ms
50,020 KB
testcase_13 AC 56 ms
50,276 KB
testcase_14 WA -
testcase_15 AC 55 ms
50,216 KB
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 AC 56 ms
50,244 KB
testcase_20 AC 57 ms
50,296 KB
testcase_21 AC 56 ms
50,380 KB
testcase_22 AC 56 ms
50,376 KB
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 AC 57 ms
50,024 KB
testcase_29 WA -
testcase_30 WA -
testcase_31 AC 56 ms
50,032 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
import java.util.Arrays;
import java.util.HashMap;
import java.util.Map;

import static java.lang.System.in;

public class Main {
    public static void main(String[] args) throws IOException {
        BufferedReader reader = new BufferedReader(new InputStreamReader(in));
        String S = reader.readLine();
        int wCount = 0;
        int firstW = 0;
        int secondW = 0;
        int answer = -1;
        for (int i = S.length() - 1; i >= 0; i--) {
            char current = S.charAt(i);
            if (current == 'w') {
                wCount += 1;
                if (wCount == 1) {
                    firstW = i;
                } else if (wCount == 2) {
                    secondW = i;
                } else {
                    firstW = secondW;
                    secondW = i;
                }

//                System.out.println("first ; " + firstW + " second; " + secondW);
//
            } else if (current == 'c' && wCount >= 2) {
//                System.out.println("c; " + i + "first ; " + firstW + " second; " + secondW);
                answer = firstW - i + 1;
            } else if (current == 'c' && wCount < 2) {
                wCount = 0;
            }
        }
        System.out.println(answer);

    }
}
0