結果

問題 No.436 ccw
ユーザー Mcpu3Mcpu3
提出日時 2018-09-04 15:51:01
言語 Java21
(openjdk 21)
結果
AC  
実行時間 182 ms / 2,000 ms
コード長 315 bytes
コンパイル時間 1,961 ms
コンパイル使用メモリ 74,016 KB
実行使用メモリ 42,020 KB
最終ジャッジ日時 2024-10-13 13:39:45
合計ジャッジ時間 6,440 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 118 ms
40,964 KB
testcase_01 AC 115 ms
40,580 KB
testcase_02 AC 115 ms
41,140 KB
testcase_03 AC 114 ms
41,004 KB
testcase_04 AC 110 ms
40,952 KB
testcase_05 AC 112 ms
41,092 KB
testcase_06 AC 118 ms
40,920 KB
testcase_07 AC 113 ms
41,012 KB
testcase_08 AC 102 ms
39,936 KB
testcase_09 AC 114 ms
40,800 KB
testcase_10 AC 116 ms
40,996 KB
testcase_11 AC 115 ms
40,624 KB
testcase_12 AC 110 ms
40,908 KB
testcase_13 AC 117 ms
41,056 KB
testcase_14 AC 118 ms
40,944 KB
testcase_15 AC 105 ms
40,164 KB
testcase_16 AC 128 ms
40,944 KB
testcase_17 AC 122 ms
41,200 KB
testcase_18 AC 134 ms
40,724 KB
testcase_19 AC 116 ms
39,960 KB
testcase_20 AC 114 ms
40,048 KB
testcase_21 AC 181 ms
41,772 KB
testcase_22 AC 173 ms
41,844 KB
testcase_23 AC 182 ms
41,952 KB
testcase_24 AC 177 ms
42,020 KB
testcase_25 AC 181 ms
41,696 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

class Main{
	public static void main(String[] args) {
		Scanner sc=new Scanner(System.in);
		String s=new String();
		int c=0,w=0,i;
		s=sc.next();
		sc.close();
		for(i=0;i<s.length();++i) {
			if(s.charAt(i)=='c') ++c;
			else ++w;
		}
		System.out.print(--c<w?c:w);
	}
}
0