結果

問題 No.436 ccw
ユーザー Daigo HIROOKADaigo HIROOKA
提出日時 2018-05-18 23:43:15
言語 Java21
(openjdk 21)
結果
AC  
実行時間 306 ms / 2,000 ms
コード長 389 bytes
コンパイル時間 3,290 ms
コンパイル使用メモリ 74,492 KB
実行使用メモリ 51,516 KB
最終ジャッジ日時 2024-06-28 14:04:32
合計ジャッジ時間 8,754 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 111 ms
40,108 KB
testcase_01 AC 127 ms
41,252 KB
testcase_02 AC 128 ms
40,984 KB
testcase_03 AC 127 ms
41,012 KB
testcase_04 AC 126 ms
41,116 KB
testcase_05 AC 125 ms
40,872 KB
testcase_06 AC 126 ms
41,128 KB
testcase_07 AC 127 ms
41,092 KB
testcase_08 AC 126 ms
40,948 KB
testcase_09 AC 128 ms
41,136 KB
testcase_10 AC 128 ms
41,136 KB
testcase_11 AC 128 ms
41,164 KB
testcase_12 AC 128 ms
41,140 KB
testcase_13 AC 129 ms
41,044 KB
testcase_14 AC 127 ms
41,096 KB
testcase_15 AC 128 ms
41,016 KB
testcase_16 AC 168 ms
41,520 KB
testcase_17 AC 152 ms
41,168 KB
testcase_18 AC 152 ms
41,600 KB
testcase_19 AC 168 ms
41,644 KB
testcase_20 AC 162 ms
41,220 KB
testcase_21 AC 306 ms
51,516 KB
testcase_22 AC 287 ms
48,032 KB
testcase_23 AC 290 ms
48,208 KB
testcase_24 AC 289 ms
48,108 KB
testcase_25 AC 286 ms
48,204 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class No436{
	public static void main(String[] args){
		Scanner sc = new Scanner(System.in);
		String[] s = sc.nextLine().split("");
		
		int num_c = 0;
		int num_w = 0;
		for(int i = 0; i < s.length; i++){
			if(s[i].equals("c")) num_c++;
			else num_w++;
		}
		if(num_c-1 <= num_w) System.out.println(num_c-1);
		else System.out.println(num_w);
		
	}
}
0