結果

問題 No.436 ccw
ユーザー willowoooowillowoooo
提出日時 2016-11-05 00:18:08
言語 Java21
(openjdk 21)
結果
AC  
実行時間 178 ms / 2,000 ms
コード長 507 bytes
コンパイル時間 3,502 ms
コンパイル使用メモリ 74,676 KB
実行使用メモリ 54,576 KB
最終ジャッジ日時 2024-05-03 22:11:05
合計ジャッジ時間 7,346 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 113 ms
53,868 KB
testcase_01 AC 111 ms
53,836 KB
testcase_02 AC 117 ms
53,948 KB
testcase_03 AC 114 ms
54,140 KB
testcase_04 AC 103 ms
52,944 KB
testcase_05 AC 113 ms
54,064 KB
testcase_06 AC 105 ms
53,700 KB
testcase_07 AC 104 ms
53,508 KB
testcase_08 AC 105 ms
53,396 KB
testcase_09 AC 106 ms
53,356 KB
testcase_10 AC 113 ms
53,988 KB
testcase_11 AC 98 ms
52,980 KB
testcase_12 AC 115 ms
54,112 KB
testcase_13 AC 100 ms
52,956 KB
testcase_14 AC 112 ms
54,060 KB
testcase_15 AC 109 ms
53,384 KB
testcase_16 AC 128 ms
53,936 KB
testcase_17 AC 119 ms
54,056 KB
testcase_18 AC 132 ms
54,132 KB
testcase_19 AC 113 ms
52,984 KB
testcase_20 AC 116 ms
52,964 KB
testcase_21 AC 166 ms
54,576 KB
testcase_22 AC 170 ms
54,508 KB
testcase_23 AC 174 ms
54,008 KB
testcase_24 AC 178 ms
54,220 KB
testcase_25 AC 177 ms
54,100 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package test;

import java.util.Arrays;
import java.util.Scanner;

public class No436 {
	void run() {
		Scanner sc = new Scanner(System.in);
		String s = sc.next();
		int c = 0,w = 0;
		for(char x:s.toCharArray()){
			if(x == 'c'){
				c++;
			}
			else{
				w++;
			}
		}
		if(c - 1 >= w)
			System.out.println(w);
		else {
			System.out.println(c-1);
		}

	}

	void debug(Object... o) {
		System.out.println(Arrays.deepToString(o));
	}

	public static void main(String[] args) {
		new No436().run();
	}
}
0