結果

問題 No.345 最小チワワ問題
ユーザー yagi2yagi2
提出日時 2017-04-17 21:29:02
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 764 bytes
コンパイル時間 2,054 ms
コンパイル使用メモリ 74,400 KB
実行使用メモリ 41,512 KB
最終ジャッジ日時 2024-07-19 05:38:27
合計ジャッジ時間 7,255 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 121 ms
41,024 KB
testcase_01 AC 121 ms
41,304 KB
testcase_02 AC 121 ms
40,948 KB
testcase_03 AC 123 ms
40,928 KB
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 AC 112 ms
40,052 KB
testcase_08 AC 123 ms
40,936 KB
testcase_09 AC 123 ms
40,876 KB
testcase_10 AC 124 ms
40,940 KB
testcase_11 AC 124 ms
40,868 KB
testcase_12 AC 127 ms
40,976 KB
testcase_13 AC 127 ms
41,016 KB
testcase_14 WA -
testcase_15 AC 127 ms
41,252 KB
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 AC 107 ms
39,988 KB
testcase_20 AC 121 ms
41,344 KB
testcase_21 AC 122 ms
41,064 KB
testcase_22 AC 123 ms
40,924 KB
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 AC 123 ms
41,272 KB
testcase_29 WA -
testcase_30 WA -
testcase_31 AC 124 ms
41,256 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);

        String S = sc.next();

        int n = 0;
        boolean c = false, w1 = false, w2 = false;
        for(String s : S.split("")) {
            if (c) n++;
            if (s.equals("c") && !c && !w1 && !w2) {
                c = true;
                n++;
            }
            if (s.equals("w") && c && !w1 && !w2) {
                w1 = true;
            } else if (s.equals("w") && c && w1 && !w2) {
                w2 = true;
                break;
            }
        }

        if (c && w1 && w2) {
            System.out.println(n);
        } else {
            System.out.println("-1");
        }
    }
}
0