結果

問題 No.436 ccw
ユーザー darknightdarknight
提出日時 2016-10-28 22:37:37
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 626 bytes
コンパイル時間 1,925 ms
コンパイル使用メモリ 75,092 KB
実行使用メモリ 54,552 KB
最終ジャッジ日時 2024-11-24 05:48:30
合計ジャッジ時間 5,872 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 98 ms
52,708 KB
testcase_01 AC 112 ms
54,244 KB
testcase_02 AC 110 ms
53,948 KB
testcase_03 AC 113 ms
54,084 KB
testcase_04 AC 114 ms
53,976 KB
testcase_05 WA -
testcase_06 AC 108 ms
52,988 KB
testcase_07 AC 102 ms
54,320 KB
testcase_08 AC 100 ms
53,124 KB
testcase_09 AC 102 ms
53,052 KB
testcase_10 AC 110 ms
53,328 KB
testcase_11 AC 113 ms
53,776 KB
testcase_12 AC 115 ms
53,844 KB
testcase_13 AC 101 ms
52,848 KB
testcase_14 AC 111 ms
54,092 KB
testcase_15 AC 116 ms
53,936 KB
testcase_16 AC 124 ms
54,048 KB
testcase_17 AC 121 ms
54,104 KB
testcase_18 AC 124 ms
52,832 KB
testcase_19 AC 132 ms
53,816 KB
testcase_20 AC 130 ms
54,032 KB
testcase_21 AC 179 ms
54,552 KB
testcase_22 AC 170 ms
54,348 KB
testcase_23 AC 170 ms
54,496 KB
testcase_24 AC 163 ms
54,124 KB
testcase_25 AC 170 ms
54,316 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<2 || q < 1) System.out.print("0");
        else if(p>=q)    System.out.print(q);
        else if(q>p)     System.out.print(p-1);
 

              

        System.out.println();
	}
}
0