結果

問題 No.345 最小チワワ問題
ユーザー きつねうどんきつねうどん
提出日時 2023-11-24 22:53:41
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 1,552 bytes
コンパイル時間 2,769 ms
コンパイル使用メモリ 77,616 KB
実行使用メモリ 41,528 KB
最終ジャッジ日時 2024-09-26 09:44:04
合計ジャッジ時間 8,332 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 131 ms
41,232 KB
testcase_01 AC 136 ms
41,144 KB
testcase_02 WA -
testcase_03 WA -
testcase_04 AC 134 ms
41,148 KB
testcase_05 AC 133 ms
41,144 KB
testcase_06 AC 130 ms
41,528 KB
testcase_07 AC 133 ms
41,192 KB
testcase_08 AC 132 ms
41,196 KB
testcase_09 AC 132 ms
41,160 KB
testcase_10 AC 133 ms
41,168 KB
testcase_11 AC 135 ms
41,020 KB
testcase_12 AC 135 ms
41,424 KB
testcase_13 AC 138 ms
41,156 KB
testcase_14 AC 136 ms
41,216 KB
testcase_15 AC 135 ms
41,284 KB
testcase_16 AC 132 ms
41,184 KB
testcase_17 WA -
testcase_18 AC 139 ms
41,024 KB
testcase_19 AC 135 ms
41,112 KB
testcase_20 AC 133 ms
41,148 KB
testcase_21 AC 132 ms
41,228 KB
testcase_22 AC 132 ms
41,124 KB
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 AC 128 ms
41,328 KB
testcase_29 AC 133 ms
41,144 KB
testcase_30 AC 133 ms
41,236 KB
testcase_31 AC 131 ms
41,360 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.ArrayList;
import java.util.List;
import java.util.Scanner;


public class Main {
    public static class Pair {
        public Integer status;
        public Integer length;

        public Pair(Integer s, Integer l) {
            this.status = s;
            this.length = l;
        }


    }

    public static void main(String[] args) {
        Scanner scanner = new Scanner(System.in);
        String a = scanner.next();
        String[] strArray = a.split("");
        List<Pair> pairList = new ArrayList<Pair>();
        for (String s : strArray) {
            if (s.equals("c")) {
                Pair pair = new Pair(0, 1);
                pairList.add(pair);
            } else if (s.equals("w")) {
                for (Pair p : pairList) {
                    if (p.status == 2) {
                        continue;
                    }
                    p.status++;
                    p.length++;
                }
            } else {
                for (Pair p : pairList) {
                    if (p.status == 2) {
                        continue;
                    }
                    p.length++;
                }
            }
        }

        int minLength = 101;
        for (Pair p : pairList) {
            if (p.status == 2) {
                if (p.length < minLength) {
                    minLength = p.length;
                }
            }
        }
        if (minLength == 101) {
            System.out.println(-1);
        } else {
            System.out.println(minLength);
        }
    }
}
0