結果

問題 No.436 ccw
ユーザー Tsukasa_TypeTsukasa_Type
提出日時 2018-02-21 19:22:35
言語 Java21
(openjdk 21)
結果
AC  
実行時間 182 ms / 2,000 ms
コード長 415 bytes
コンパイル時間 2,986 ms
コンパイル使用メモリ 74,788 KB
実行使用メモリ 42,056 KB
最終ジャッジ日時 2024-09-18 23:57:20
合計ジャッジ時間 6,209 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 115 ms
41,172 KB
testcase_01 AC 97 ms
41,420 KB
testcase_02 AC 99 ms
41,232 KB
testcase_03 AC 99 ms
40,688 KB
testcase_04 AC 107 ms
41,160 KB
testcase_05 AC 110 ms
41,240 KB
testcase_06 AC 92 ms
41,072 KB
testcase_07 AC 94 ms
41,164 KB
testcase_08 AC 107 ms
40,936 KB
testcase_09 AC 98 ms
41,296 KB
testcase_10 AC 111 ms
41,160 KB
testcase_11 AC 112 ms
41,156 KB
testcase_12 AC 111 ms
39,836 KB
testcase_13 AC 109 ms
41,224 KB
testcase_14 AC 111 ms
41,128 KB
testcase_15 AC 109 ms
41,068 KB
testcase_16 AC 124 ms
40,860 KB
testcase_17 AC 116 ms
40,824 KB
testcase_18 AC 118 ms
41,088 KB
testcase_19 AC 113 ms
41,524 KB
testcase_20 AC 127 ms
41,308 KB
testcase_21 AC 182 ms
41,968 KB
testcase_22 AC 178 ms
42,056 KB
testcase_23 AC 163 ms
42,008 KB
testcase_24 AC 164 ms
42,024 KB
testcase_25 AC 175 ms
42,012 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
	static Scanner sc = new Scanner(System.in);
	public static void main(String[] args) {
		String s = sc.next();
		int c_num = 0;
		int w_num = 0;
		for (int i=0; i<s.length(); i++) {
			if (s.charAt(i)=='c') {c_num++;}
			else {w_num++;}
		}
		
		if (c_num-1 >= w_num) {
			System.out.println(w_num);
		}
		else if (c_num-1 < w_num) {
			System.out.println(c_num-1);
		}
	}
}
0