結果

問題 No.345 最小チワワ問題
ユーザー yagi2yagi2
提出日時 2017-04-17 21:32:16
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 684 bytes
コンパイル時間 1,886 ms
コンパイル使用メモリ 73,844 KB
実行使用メモリ 41,436 KB
最終ジャッジ日時 2024-07-19 05:38:34
合計ジャッジ時間 6,540 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 113 ms
40,816 KB
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 AC 115 ms
41,308 KB
testcase_05 WA -
testcase_06 WA -
testcase_07 AC 108 ms
39,960 KB
testcase_08 AC 113 ms
40,940 KB
testcase_09 AC 114 ms
41,024 KB
testcase_10 AC 116 ms
40,928 KB
testcase_11 AC 115 ms
41,100 KB
testcase_12 AC 114 ms
41,108 KB
testcase_13 AC 121 ms
41,304 KB
testcase_14 AC 115 ms
41,228 KB
testcase_15 AC 115 ms
40,852 KB
testcase_16 AC 109 ms
40,140 KB
testcase_17 WA -
testcase_18 WA -
testcase_19 AC 111 ms
40,984 KB
testcase_20 AC 115 ms
41,004 KB
testcase_21 WA -
testcase_22 AC 112 ms
40,976 KB
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 AC 119 ms
41,240 KB
testcase_29 WA -
testcase_30 WA -
testcase_31 AC 117 ms
40,776 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;
        int wc = 0;
        for(String s : S.split("")) {
            if (c) n++;
            if (s.equals("c")) {
                n = 1;
                c = true;
            }
            if (s.equals("w")) {
                wc++;
                if (wc == 2) {
                    break;
                }
            }
        }

        if (c && wc == 2) {
            System.out.println(n);
        } else {
            System.out.println("-1");
        }
    }
}
0