結果

問題 No.436 ccw
ユーザー dogwood0424dogwood0424
提出日時 2017-12-04 00:44:20
言語 Java21
(openjdk 21)
結果
AC  
実行時間 201 ms / 2,000 ms
コード長 390 bytes
コンパイル時間 3,850 ms
コンパイル使用メモリ 75,260 KB
実行使用メモリ 54,520 KB
最終ジャッジ日時 2024-05-06 09:29:59
合計ジャッジ時間 9,124 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 146 ms
54,012 KB
testcase_01 AC 151 ms
54,040 KB
testcase_02 AC 134 ms
54,016 KB
testcase_03 AC 130 ms
53,864 KB
testcase_04 AC 132 ms
53,808 KB
testcase_05 AC 142 ms
53,628 KB
testcase_06 AC 132 ms
54,032 KB
testcase_07 AC 134 ms
53,632 KB
testcase_08 AC 132 ms
53,628 KB
testcase_09 AC 128 ms
54,036 KB
testcase_10 AC 134 ms
54,168 KB
testcase_11 AC 135 ms
54,000 KB
testcase_12 AC 128 ms
53,776 KB
testcase_13 AC 128 ms
53,840 KB
testcase_14 AC 131 ms
53,832 KB
testcase_15 AC 129 ms
54,208 KB
testcase_16 AC 141 ms
54,108 KB
testcase_17 AC 141 ms
53,952 KB
testcase_18 AC 141 ms
54,344 KB
testcase_19 AC 138 ms
53,896 KB
testcase_20 AC 147 ms
53,972 KB
testcase_21 AC 196 ms
54,136 KB
testcase_22 AC 198 ms
53,932 KB
testcase_23 AC 192 ms
54,076 KB
testcase_24 AC 201 ms
54,520 KB
testcase_25 AC 193 ms
54,356 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class No436 {

	static int search(String S,char c){
		int cnt=0;

		for(char x:S.toCharArray()) {
			if(x==c)
			{
				cnt++;}
			}
		return cnt;
		}

	public static void main(String[]args) {
		Scanner sc = new Scanner(System.in);

		String S = sc.next();
		int C,W;

		C = search(S,'c');
		W = search(S,'w');

		System.out.println(Math.min(C-1,W));

	}

}
0