結果

問題 No.436 ccw
ユーザー dogwood0424dogwood0424
提出日時 2017-12-04 00:44:20
言語 Java
(openjdk 23)
結果
AC  
実行時間 176 ms / 2,000 ms
コード長 390 bytes
コンパイル時間 3,467 ms
コンパイル使用メモリ 74,980 KB
実行使用メモリ 54,456 KB
最終ジャッジ日時 2024-11-28 15:04:30
合計ジャッジ時間 7,809 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 113 ms
54,096 KB
testcase_01 AC 107 ms
52,992 KB
testcase_02 AC 117 ms
54,076 KB
testcase_03 AC 112 ms
53,932 KB
testcase_04 AC 109 ms
54,136 KB
testcase_05 AC 106 ms
53,988 KB
testcase_06 AC 106 ms
54,136 KB
testcase_07 AC 110 ms
53,668 KB
testcase_08 AC 113 ms
54,032 KB
testcase_09 AC 112 ms
53,928 KB
testcase_10 AC 95 ms
52,920 KB
testcase_11 AC 106 ms
53,924 KB
testcase_12 AC 108 ms
54,216 KB
testcase_13 AC 110 ms
53,976 KB
testcase_14 AC 107 ms
52,900 KB
testcase_15 AC 112 ms
53,988 KB
testcase_16 AC 130 ms
53,924 KB
testcase_17 AC 113 ms
53,740 KB
testcase_18 AC 125 ms
53,844 KB
testcase_19 AC 108 ms
52,840 KB
testcase_20 AC 117 ms
53,932 KB
testcase_21 AC 173 ms
54,160 KB
testcase_22 AC 162 ms
54,456 KB
testcase_23 AC 176 ms
54,004 KB
testcase_24 AC 163 ms
54,100 KB
testcase_25 AC 169 ms
54,192 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