結果

問題 No.436 ccw
ユーザー jimanojimano
提出日時 2018-02-10 17:14:40
言語 Java21
(openjdk 21)
結果
AC  
実行時間 73 ms / 2,000 ms
コード長 498 bytes
コンパイル時間 3,169 ms
コンパイル使用メモリ 72,728 KB
実行使用メモリ 38,384 KB
最終ジャッジ日時 2024-10-14 17:09:13
合計ジャッジ時間 5,530 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 51 ms
36,756 KB
testcase_01 AC 51 ms
36,820 KB
testcase_02 AC 52 ms
36,552 KB
testcase_03 AC 51 ms
36,752 KB
testcase_04 AC 52 ms
36,132 KB
testcase_05 AC 52 ms
36,704 KB
testcase_06 AC 53 ms
36,812 KB
testcase_07 AC 52 ms
36,800 KB
testcase_08 AC 51 ms
36,848 KB
testcase_09 AC 51 ms
36,284 KB
testcase_10 AC 53 ms
36,712 KB
testcase_11 AC 52 ms
36,720 KB
testcase_12 AC 51 ms
36,688 KB
testcase_13 AC 50 ms
36,452 KB
testcase_14 AC 53 ms
36,804 KB
testcase_15 AC 52 ms
36,720 KB
testcase_16 AC 51 ms
36,780 KB
testcase_17 AC 52 ms
36,516 KB
testcase_18 AC 53 ms
36,876 KB
testcase_19 AC 52 ms
36,540 KB
testcase_20 AC 52 ms
36,896 KB
testcase_21 AC 73 ms
38,384 KB
testcase_22 AC 72 ms
38,028 KB
testcase_23 AC 68 ms
37,544 KB
testcase_24 AC 72 ms
38,248 KB
testcase_25 AC 68 ms
37,392 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package me.yukicoder;

import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;

public class No0436 {
	public static void main(String[] args) throws IOException {
		BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
		char[] input = br.readLine().toCharArray();
		int cntC = 0;
		int cntW = 0;

		for (char c : input) {
			if (c == 'c') {
				cntC++;
			} else {
				cntW++;
			}
		}

		System.out.println(Math.min(cntC - 1, cntW));
	}
}
0