結果

問題 No.436 ccw
ユーザー htensaihtensai
提出日時 2019-11-19 13:15:08
言語 Java21
(openjdk 21)
結果
AC  
実行時間 192 ms / 2,000 ms
コード長 408 bytes
コンパイル時間 2,102 ms
コンパイル使用メモリ 74,832 KB
実行使用メモリ 42,684 KB
最終ジャッジ日時 2024-10-03 06:26:39
合計ジャッジ時間 6,799 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 120 ms
41,292 KB
testcase_01 AC 116 ms
41,220 KB
testcase_02 AC 122 ms
40,148 KB
testcase_03 AC 124 ms
41,320 KB
testcase_04 AC 125 ms
41,408 KB
testcase_05 AC 111 ms
41,336 KB
testcase_06 AC 117 ms
41,436 KB
testcase_07 AC 120 ms
41,436 KB
testcase_08 AC 117 ms
41,576 KB
testcase_09 AC 122 ms
41,300 KB
testcase_10 AC 121 ms
41,252 KB
testcase_11 AC 119 ms
41,216 KB
testcase_12 AC 121 ms
41,428 KB
testcase_13 AC 124 ms
41,452 KB
testcase_14 AC 120 ms
41,544 KB
testcase_15 AC 121 ms
41,300 KB
testcase_16 AC 140 ms
41,520 KB
testcase_17 AC 133 ms
41,272 KB
testcase_18 AC 145 ms
41,288 KB
testcase_19 AC 133 ms
41,400 KB
testcase_20 AC 140 ms
41,544 KB
testcase_21 AC 192 ms
42,684 KB
testcase_22 AC 191 ms
42,292 KB
testcase_23 AC 187 ms
42,276 KB
testcase_24 AC 187 ms
42,548 KB
testcase_25 AC 188 ms
42,408 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 cCount = 0;
		int wCount = 0;
		for (int i = 0; i < arr.length; i++) {
		    if (arr[i] == 'c') {
		        cCount++;
		    } else {
		        wCount++;
		    }
		}
		int ans = Math.min(cCount - 1, wCount);
		System.out.println(ans);
	}
}
0