結果

問題 No.436 ccw
ユーザー poopi_pokepoopi_poke
提出日時 2016-11-25 15:55:21
言語 Java21
(openjdk 21)
結果
AC  
実行時間 207 ms / 2,000 ms
コード長 455 bytes
コンパイル時間 3,136 ms
コンパイル使用メモリ 74,348 KB
実行使用メモリ 42,588 KB
最終ジャッジ日時 2024-11-27 11:15:50
合計ジャッジ時間 7,733 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 126 ms
40,880 KB
testcase_01 AC 122 ms
41,052 KB
testcase_02 AC 114 ms
39,928 KB
testcase_03 AC 104 ms
40,084 KB
testcase_04 AC 117 ms
41,100 KB
testcase_05 AC 110 ms
40,216 KB
testcase_06 AC 110 ms
41,480 KB
testcase_07 AC 108 ms
41,160 KB
testcase_08 AC 110 ms
39,956 KB
testcase_09 AC 114 ms
41,376 KB
testcase_10 AC 113 ms
41,360 KB
testcase_11 AC 116 ms
41,084 KB
testcase_12 AC 117 ms
40,844 KB
testcase_13 AC 115 ms
40,988 KB
testcase_14 AC 101 ms
39,820 KB
testcase_15 AC 124 ms
41,096 KB
testcase_16 AC 144 ms
41,060 KB
testcase_17 AC 142 ms
41,376 KB
testcase_18 AC 140 ms
41,232 KB
testcase_19 AC 137 ms
40,904 KB
testcase_20 AC 136 ms
40,732 KB
testcase_21 AC 203 ms
42,424 KB
testcase_22 AC 199 ms
42,320 KB
testcase_23 AC 207 ms
42,328 KB
testcase_24 AC 207 ms
42,428 KB
testcase_25 AC 203 ms
42,588 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
import java.util.regex.*;
public class A{
	public static void main(String args[]){
		Scanner sc=new Scanner(System.in);
		String s=sc.next();
		int c=a(s,"c");
		int w=a(s,"w");
		if(c>=w+1){
			System.out.print(w);
		}else{
			System.out.print(c-1);
		}
	}
		
	public static int a(String s,String c){
		int count=0;
		Pattern p = Pattern.compile(c);
 		Matcher m = p.matcher(s);
		while(m.find()){
			count++;
		}
		return count;
	}
}
0