結果
問題 | No.345 最小チワワ問題 |
ユーザー | nc_research |
提出日時 | 2021-10-04 18:24:10 |
言語 | Java21 (openjdk 21) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,409 bytes |
コンパイル時間 | 3,095 ms |
コンパイル使用メモリ | 78,892 KB |
実行使用メモリ | 41,604 KB |
最終ジャッジ日時 | 2024-07-22 18:52:36 |
合計ジャッジ時間 | 7,237 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 101 ms
41,184 KB |
testcase_01 | AC | 104 ms
41,336 KB |
testcase_02 | AC | 103 ms
41,312 KB |
testcase_03 | AC | 103 ms
41,064 KB |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | AC | 104 ms
41,236 KB |
testcase_08 | AC | 106 ms
41,284 KB |
testcase_09 | AC | 104 ms
41,208 KB |
testcase_10 | AC | 97 ms
40,092 KB |
testcase_11 | AC | 95 ms
40,012 KB |
testcase_12 | AC | 112 ms
41,176 KB |
testcase_13 | AC | 102 ms
40,900 KB |
testcase_14 | WA | - |
testcase_15 | AC | 102 ms
40,924 KB |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | AC | 94 ms
40,336 KB |
testcase_20 | AC | 101 ms
41,168 KB |
testcase_21 | AC | 99 ms
40,804 KB |
testcase_22 | AC | 92 ms
40,292 KB |
testcase_23 | WA | - |
testcase_24 | WA | - |
testcase_25 | WA | - |
testcase_26 | WA | - |
testcase_27 | WA | - |
testcase_28 | AC | 102 ms
41,124 KB |
testcase_29 | WA | - |
testcase_30 | WA | - |
testcase_31 | AC | 91 ms
40,416 KB |
ソースコード
package com.mycompany.app; import java.util.Scanner; import java.util.ArrayList; import java.util.Collections; import java.util.HashSet; import java.util.HashMap; import java.util.regex.Pattern; import java.util.regex.Matcher; public class App { // strをseparatorで分割してArrayList<Integer>へ変換 public static ArrayList<Integer> splitToArrayList(String str, String separator){ ArrayList<Integer> ans = new ArrayList<Integer>(); String[] separated_str = str.split(" "); for(int i = 0; i < separated_str.length; i++){ ans.add(Integer.valueOf(separated_str[i])); } return ans; } public static void main( String[] args ) { Scanner scan = new Scanner(System.in); String first_line = scan.nextLine(); scan.close(); // c, w, wがこの順で現れる正規表現 Pattern p = Pattern.compile("(c.*?w.*?w)"); Matcher m = p.matcher(first_line); // 文字列の最大値は100なので,デフォルト値は101 int min_length = 101; while(m.find()){ int matching_str_length = m.group().length(); if(matching_str_length < min_length){ min_length = matching_str_length; } } if(min_length == 101) System.out.println(-1); else System.out.println(min_length); return; } }