結果

問題 No.436 ccw
ユーザー matsuyoshi30matsuyoshi30
提出日時 2017-03-29 21:36:32
言語 Java21
(openjdk 21)
結果
AC  
実行時間 176 ms / 2,000 ms
コード長 525 bytes
コンパイル時間 2,199 ms
コンパイル使用メモリ 75,524 KB
実行使用メモリ 42,276 KB
最終ジャッジ日時 2024-07-06 15:10:22
合計ジャッジ時間 5,666 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 94 ms
41,128 KB
testcase_01 AC 97 ms
41,424 KB
testcase_02 AC 116 ms
41,208 KB
testcase_03 AC 108 ms
40,972 KB
testcase_04 AC 110 ms
41,540 KB
testcase_05 AC 117 ms
41,288 KB
testcase_06 AC 110 ms
41,704 KB
testcase_07 AC 91 ms
41,120 KB
testcase_08 AC 91 ms
41,188 KB
testcase_09 AC 112 ms
41,276 KB
testcase_10 AC 108 ms
41,244 KB
testcase_11 AC 115 ms
41,280 KB
testcase_12 AC 109 ms
41,088 KB
testcase_13 AC 99 ms
41,292 KB
testcase_14 AC 97 ms
41,420 KB
testcase_15 AC 108 ms
41,360 KB
testcase_16 AC 127 ms
41,068 KB
testcase_17 AC 115 ms
41,620 KB
testcase_18 AC 123 ms
40,184 KB
testcase_19 AC 120 ms
41,340 KB
testcase_20 AC 127 ms
41,508 KB
testcase_21 AC 176 ms
42,276 KB
testcase_22 AC 163 ms
42,228 KB
testcase_23 AC 164 ms
42,116 KB
testcase_24 AC 171 ms
42,212 KB
testcase_25 AC 170 ms
42,268 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.Collections;

class Main {
    public static void main(String[] args) {
        Scanner in = new Scanner(System.in);
        String s = in.next();
        char[] c = s.toCharArray();

        int c_l = 0;
        int w_l = 0;
        for(int i=0; i<s.length(); i++) {
            if(c[i] == 'c') c_l++;
            if(c[i] == 'w') w_l++;
        }

        System.out.println(Math.min(c_l - 1, w_l));

        in.close();
    }
}
0