結果

問題 No.345 最小チワワ問題
ユーザー shinwisteriashinwisteria
提出日時 2017-04-02 23:42:45
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 513 bytes
コンパイル時間 3,160 ms
コンパイル使用メモリ 75,012 KB
実行使用メモリ 54,588 KB
最終ジャッジ日時 2024-07-08 00:20:11
合計ジャッジ時間 6,975 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 98 ms
52,640 KB
testcase_01 AC 112 ms
54,044 KB
testcase_02 AC 107 ms
53,836 KB
testcase_03 AC 109 ms
53,916 KB
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 AC 104 ms
53,788 KB
testcase_08 AC 95 ms
52,668 KB
testcase_09 AC 92 ms
53,848 KB
testcase_10 AC 93 ms
52,500 KB
testcase_11 AC 96 ms
52,916 KB
testcase_12 AC 112 ms
53,856 KB
testcase_13 AC 109 ms
53,792 KB
testcase_14 WA -
testcase_15 AC 108 ms
53,752 KB
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 AC 103 ms
53,656 KB
testcase_20 AC 106 ms
53,720 KB
testcase_21 AC 111 ms
53,960 KB
testcase_22 AC 93 ms
52,344 KB
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 AC 117 ms
53,788 KB
testcase_29 WA -
testcase_30 WA -
testcase_31 AC 103 ms
52,792 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][^w]{0,}[w][^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