結果

問題 No.345 最小チワワ問題
ユーザー shinwisteriashinwisteria
提出日時 2017-04-02 23:40:27
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 506 bytes
コンパイル時間 3,693 ms
コンパイル使用メモリ 74,740 KB
実行使用メモリ 54,336 KB
最終ジャッジ日時 2024-07-08 00:19:49
合計ジャッジ時間 9,001 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 130 ms
40,980 KB
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 AC 116 ms
40,224 KB
testcase_08 AC 134 ms
41,312 KB
testcase_09 AC 131 ms
41,428 KB
testcase_10 AC 131 ms
41,100 KB
testcase_11 AC 137 ms
41,096 KB
testcase_12 AC 141 ms
40,996 KB
testcase_13 AC 132 ms
41,456 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 130 ms
41,060 KB
testcase_21 AC 131 ms
40,944 KB
testcase_22 AC 143 ms
41,200 KB
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 AC 129 ms
41,160 KB
testcase_29 WA -
testcase_30 WA -
testcase_31 AC 131 ms
41,268 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;
import java.util.regex.Matcher;
import java.util.regex.Pattern;

public class Mincww {

	public static void main(String[] args) {
		// TODO 自動生成されたメソッド・スタブ
		Scanner s = new Scanner(System.in);
		String cww = s.next();
		s.close();
		String regex = "([c].{0,}[w].{0,}[w])";
		Pattern p = Pattern.compile(regex);
		Matcher m = p.matcher(cww);
		if(m.find()){
			System.out.println(m.group(1).length());
		}else{
			System.out.println("-1");
		}

	}

}
0