結果

問題 No.436 ccw
ユーザー darknightdarknight
提出日時 2016-10-28 22:40:59
言語 Java21
(openjdk 21)
結果
AC  
実行時間 210 ms / 2,000 ms
コード長 576 bytes
コンパイル時間 2,247 ms
コンパイル使用メモリ 73,988 KB
実行使用メモリ 42,296 KB
最終ジャッジ日時 2024-11-24 05:50:53
合計ジャッジ時間 7,081 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 125 ms
41,192 KB
testcase_01 AC 123 ms
41,256 KB
testcase_02 AC 125 ms
41,284 KB
testcase_03 AC 132 ms
41,016 KB
testcase_04 AC 126 ms
41,236 KB
testcase_05 AC 128 ms
40,996 KB
testcase_06 AC 128 ms
41,220 KB
testcase_07 AC 133 ms
40,884 KB
testcase_08 AC 132 ms
40,984 KB
testcase_09 AC 129 ms
40,988 KB
testcase_10 AC 138 ms
40,984 KB
testcase_11 AC 130 ms
40,852 KB
testcase_12 AC 132 ms
41,692 KB
testcase_13 AC 132 ms
40,852 KB
testcase_14 AC 132 ms
41,104 KB
testcase_15 AC 135 ms
41,284 KB
testcase_16 AC 145 ms
41,200 KB
testcase_17 AC 137 ms
41,060 KB
testcase_18 AC 146 ms
41,748 KB
testcase_19 AC 140 ms
41,080 KB
testcase_20 AC 142 ms
41,416 KB
testcase_21 AC 210 ms
42,108 KB
testcase_22 AC 208 ms
42,076 KB
testcase_23 AC 209 ms
41,968 KB
testcase_24 AC 209 ms
42,152 KB
testcase_25 AC 200 ms
42,296 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
 
public class Main {
	public static void main(String[] args) {
 
		Scanner sc  = new Scanner(System.in);

		int o = 0 ,p = 0,q = 0;
		long a = 0, b = 0, c = 0;
		char ch;
		String str;
		
        String s1 = sc.next();
        char[] c1 = s1.toCharArray();
        
        for(int i = 0; i < s1.length(); i++ ){
             if( c1[i]=='c' ) p++;
            if( c1[i]=='w' ) q++;
        
        }
        
       
        if(p>q)    System.out.print(q);
        if(q>=p)     System.out.print(p-1);
 

              

        System.out.println();
	}
}
0