結果

問題 No.436 ccw
ユーザー tentententen
提出日時 2021-02-09 08:49:45
言語 Java21
(openjdk 21)
結果
AC  
実行時間 197 ms / 2,000 ms
コード長 411 bytes
コンパイル時間 2,780 ms
コンパイル使用メモリ 74,844 KB
実行使用メモリ 54,400 KB
最終ジャッジ日時 2024-07-06 14:15:38
合計ジャッジ時間 7,959 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 127 ms
54,132 KB
testcase_01 AC 130 ms
54,196 KB
testcase_02 AC 129 ms
53,908 KB
testcase_03 AC 128 ms
54,228 KB
testcase_04 AC 126 ms
53,784 KB
testcase_05 AC 126 ms
54,136 KB
testcase_06 AC 126 ms
54,148 KB
testcase_07 AC 127 ms
53,880 KB
testcase_08 AC 130 ms
53,964 KB
testcase_09 AC 126 ms
54,036 KB
testcase_10 AC 127 ms
54,020 KB
testcase_11 AC 126 ms
54,036 KB
testcase_12 AC 129 ms
53,768 KB
testcase_13 AC 129 ms
53,988 KB
testcase_14 AC 129 ms
53,752 KB
testcase_15 AC 128 ms
54,068 KB
testcase_16 AC 143 ms
54,008 KB
testcase_17 AC 133 ms
53,988 KB
testcase_18 AC 136 ms
54,196 KB
testcase_19 AC 140 ms
53,964 KB
testcase_20 AC 143 ms
54,020 KB
testcase_21 AC 194 ms
54,160 KB
testcase_22 AC 192 ms
54,220 KB
testcase_23 AC 186 ms
54,396 KB
testcase_24 AC 197 ms
54,400 KB
testcase_25 AC 189 ms
54,132 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        char[] arr = sc.next().toCharArray();
        int length = arr.length;
        int count = 0;
        for (char c : arr) {
            if (c == 'c') {
                count++;
            }
        }
        System.out.println(Math.min(count - 1, length - count));
    }
}
0