結果

問題 No.436 ccw
ユーザー samplelpmassamplelpmas
提出日時 2017-01-14 17:50:03
言語 Java21
(openjdk 21)
結果
AC  
実行時間 195 ms / 2,000 ms
コード長 547 bytes
コンパイル時間 2,581 ms
コンパイル使用メモリ 74,512 KB
実行使用メモリ 54,328 KB
最終ジャッジ日時 2024-06-01 08:14:19
合計ジャッジ時間 7,483 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 126 ms
53,772 KB
testcase_01 AC 128 ms
54,024 KB
testcase_02 AC 123 ms
53,940 KB
testcase_03 AC 131 ms
53,968 KB
testcase_04 AC 131 ms
53,892 KB
testcase_05 AC 128 ms
54,260 KB
testcase_06 AC 128 ms
53,872 KB
testcase_07 AC 125 ms
53,832 KB
testcase_08 AC 125 ms
53,988 KB
testcase_09 AC 124 ms
54,068 KB
testcase_10 AC 112 ms
52,692 KB
testcase_11 AC 127 ms
54,012 KB
testcase_12 AC 127 ms
53,944 KB
testcase_13 AC 126 ms
53,828 KB
testcase_14 AC 127 ms
54,116 KB
testcase_15 AC 128 ms
53,952 KB
testcase_16 AC 139 ms
54,112 KB
testcase_17 AC 134 ms
54,152 KB
testcase_18 AC 144 ms
54,120 KB
testcase_19 AC 140 ms
54,104 KB
testcase_20 AC 142 ms
53,860 KB
testcase_21 AC 193 ms
53,920 KB
testcase_22 AC 189 ms
54,328 KB
testcase_23 AC 192 ms
54,116 KB
testcase_24 AC 195 ms
54,252 KB
testcase_25 AC 192 ms
54,236 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {

    public static void main(String[] args) {

        Scanner sc = new Scanner(System.in);

        String ccwString = sc.next();

        int cCount = 0;
        int wCount = 0;

        for (int i = 0; i < ccwString.length(); i++) {

            char ch = ccwString.charAt(i);

            if (ch == 'c') {
                cCount++;
            }

            if (ch == 'w') {
                wCount++;
            }

        }

        System.out.println(Math.min(cCount - 1, wCount));

    }

}
0