結果
問題 | No.345 最小チワワ問題 |
ユーザー | SagToki |
提出日時 | 2018-05-17 14:41:15 |
言語 | Java21 (openjdk 21) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,689 bytes |
コンパイル時間 | 4,681 ms |
コンパイル使用メモリ | 83,632 KB |
実行使用メモリ | 54,236 KB |
最終ジャッジ日時 | 2024-06-28 13:29:53 |
合計ジャッジ時間 | 9,089 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 125 ms
41,328 KB |
testcase_01 | AC | 127 ms
40,956 KB |
testcase_02 | AC | 125 ms
41,272 KB |
testcase_03 | AC | 115 ms
41,364 KB |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | AC | 125 ms
41,584 KB |
testcase_08 | AC | 128 ms
41,180 KB |
testcase_09 | AC | 115 ms
40,348 KB |
testcase_10 | AC | 132 ms
41,292 KB |
testcase_11 | AC | 128 ms
40,968 KB |
testcase_12 | AC | 134 ms
41,336 KB |
testcase_13 | AC | 131 ms
41,180 KB |
testcase_14 | WA | - |
testcase_15 | AC | 116 ms
41,168 KB |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | AC | 127 ms
41,184 KB |
testcase_20 | AC | 126 ms
41,216 KB |
testcase_21 | AC | 126 ms
41,404 KB |
testcase_22 | AC | 117 ms
39,948 KB |
testcase_23 | WA | - |
testcase_24 | WA | - |
testcase_25 | WA | - |
testcase_26 | WA | - |
testcase_27 | WA | - |
testcase_28 | AC | 128 ms
41,396 KB |
testcase_29 | WA | - |
testcase_30 | WA | - |
testcase_31 | AC | 113 ms
41,420 KB |
ソースコード
import java.util.ArrayList; import java.util.Collections; import java.util.Scanner; import java.util.regex.Pattern; import java.util.regex.Matcher; public class MinimumChihuahua { public static void main(String[] args){ Scanner scanner = new Scanner(System.in); try{ String S = scanner.next(); if(S.length() < 1 || S.length() > 100){ System.out.println("文字列は1以上100以下の文字数で入力してください"); System.exit(0); } Pattern pattern = Pattern.compile(".*[A-Z].*"); Matcher matcher = pattern.matcher(S); if(matcher.find()){ S = S.toLowerCase(); } char[] CS = S.toCharArray(); ArrayList<Integer> Stock = new ArrayList<>(); int CountW = 0; for (int i = 0 ; i < CS.length ;i++){ if(CS[i] == 'c'){ for(int j = i ; j < CS.length ; j++){ if(CS[j] == 'w'){ CountW++; if(CountW == 2){ Stock.add((j + 1) - i ); break; } } } } } if(Stock.isEmpty()){ System.out.println("-1"); }else{ Collections.sort(Stock); System.out.println(Stock.get(0)); } }catch(Exception E){ System.out.println("予期せぬエラーです"); } } }