結果

問題 No.436 ccw
ユーザー yagi2yagi2
提出日時 2017-04-15 19:22:13
言語 Java21
(openjdk 21)
結果
AC  
実行時間 194 ms / 2,000 ms
コード長 533 bytes
コンパイル時間 2,147 ms
コンパイル使用メモリ 74,768 KB
実行使用メモリ 42,660 KB
最終ジャッジ日時 2024-07-18 18:01:26
合計ジャッジ時間 6,591 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 123 ms
41,284 KB
testcase_01 AC 123 ms
41,332 KB
testcase_02 AC 125 ms
41,232 KB
testcase_03 AC 121 ms
41,160 KB
testcase_04 AC 122 ms
41,148 KB
testcase_05 AC 121 ms
41,504 KB
testcase_06 AC 123 ms
41,024 KB
testcase_07 AC 122 ms
41,196 KB
testcase_08 AC 122 ms
41,012 KB
testcase_09 AC 124 ms
41,524 KB
testcase_10 AC 124 ms
41,376 KB
testcase_11 AC 124 ms
41,436 KB
testcase_12 AC 109 ms
39,880 KB
testcase_13 AC 124 ms
41,432 KB
testcase_14 AC 125 ms
41,440 KB
testcase_15 AC 124 ms
41,044 KB
testcase_16 AC 136 ms
41,544 KB
testcase_17 AC 128 ms
41,408 KB
testcase_18 AC 140 ms
41,120 KB
testcase_19 AC 141 ms
41,116 KB
testcase_20 AC 145 ms
41,024 KB
testcase_21 AC 194 ms
42,048 KB
testcase_22 AC 183 ms
42,660 KB
testcase_23 AC 191 ms
42,112 KB
testcase_24 AC 186 ms
41,952 KB
testcase_25 AC 184 ms
42,028 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 c = 0;
        for (int i = 0; i < S.length(); i++) {
            if (S.charAt(i) == 'w')break;
            if (S.charAt(i) == 'c') {
                c++;
            }
        }
        int w = S.length() - c;

        if (c <= w) {
            System.out.println(c-1);
        } else if (c > w) {
            System.out.println(w);
        }
    }
}
0