結果

問題 No.436 ccw
ユーザー GoryudyumaGoryudyuma
提出日時 2017-02-15 23:53:15
言語 Java21
(openjdk 21)
結果
AC  
実行時間 182 ms / 2,000 ms
コード長 649 bytes
コンパイル時間 2,159 ms
コンパイル使用メモリ 74,404 KB
実行使用メモリ 42,472 KB
最終ジャッジ日時 2024-06-09 12:46:10
合計ジャッジ時間 5,999 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 94 ms
40,064 KB
testcase_01 AC 107 ms
41,196 KB
testcase_02 AC 95 ms
39,756 KB
testcase_03 AC 103 ms
40,660 KB
testcase_04 AC 104 ms
41,160 KB
testcase_05 AC 106 ms
41,080 KB
testcase_06 AC 108 ms
41,224 KB
testcase_07 AC 109 ms
40,744 KB
testcase_08 AC 111 ms
40,896 KB
testcase_09 AC 98 ms
40,304 KB
testcase_10 AC 95 ms
40,304 KB
testcase_11 AC 94 ms
40,216 KB
testcase_12 AC 106 ms
40,952 KB
testcase_13 AC 101 ms
41,196 KB
testcase_14 AC 98 ms
40,064 KB
testcase_15 AC 103 ms
40,772 KB
testcase_16 AC 124 ms
41,008 KB
testcase_17 AC 102 ms
39,796 KB
testcase_18 AC 129 ms
41,468 KB
testcase_19 AC 113 ms
41,000 KB
testcase_20 AC 125 ms
41,176 KB
testcase_21 AC 182 ms
41,944 KB
testcase_22 AC 177 ms
42,076 KB
testcase_23 AC 166 ms
42,472 KB
testcase_24 AC 165 ms
42,380 KB
testcase_25 AC 165 ms
42,240 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

class Main {
        public static void main(String args[]) {
                try (Scanner sc = new Scanner(System.in)) {
                        String S = sc.next();
                        int c = 0, w = 0;
                        for (int i = 0; i < S.length(); i++) {
                                if (S.charAt(i) == 'c') {
                                        c++;
                                } else {
                                        w++;
                                }
                        }
                        System.out.println(Math.max(0, Math.min(c - 1, w)));
                }
        }
}
0