結果
問題 | No.345 最小チワワ問題 |
ユーザー | maruyuki95 |
提出日時 | 2018-01-08 01:40:02 |
言語 | Java21 (openjdk 21) |
結果 |
AC
|
実行時間 | 137 ms / 2,000 ms |
コード長 | 1,274 bytes |
コンパイル時間 | 2,638 ms |
コンパイル使用メモリ | 90,708 KB |
実行使用メモリ | 54,340 KB |
最終ジャッジ日時 | 2024-09-25 12:08:57 |
合計ジャッジ時間 | 7,976 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 133 ms
53,992 KB |
testcase_01 | AC | 134 ms
54,060 KB |
testcase_02 | AC | 131 ms
54,204 KB |
testcase_03 | AC | 133 ms
53,940 KB |
testcase_04 | AC | 131 ms
54,164 KB |
testcase_05 | AC | 134 ms
54,236 KB |
testcase_06 | AC | 131 ms
54,184 KB |
testcase_07 | AC | 131 ms
54,144 KB |
testcase_08 | AC | 129 ms
54,096 KB |
testcase_09 | AC | 132 ms
54,140 KB |
testcase_10 | AC | 131 ms
53,784 KB |
testcase_11 | AC | 132 ms
54,028 KB |
testcase_12 | AC | 132 ms
54,148 KB |
testcase_13 | AC | 137 ms
54,236 KB |
testcase_14 | AC | 134 ms
54,280 KB |
testcase_15 | AC | 133 ms
54,340 KB |
testcase_16 | AC | 134 ms
54,032 KB |
testcase_17 | AC | 132 ms
54,028 KB |
testcase_18 | AC | 132 ms
54,216 KB |
testcase_19 | AC | 133 ms
54,016 KB |
testcase_20 | AC | 131 ms
54,320 KB |
testcase_21 | AC | 131 ms
54,036 KB |
testcase_22 | AC | 133 ms
54,284 KB |
testcase_23 | AC | 129 ms
54,056 KB |
testcase_24 | AC | 132 ms
53,880 KB |
testcase_25 | AC | 133 ms
54,160 KB |
testcase_26 | AC | 132 ms
54,092 KB |
testcase_27 | AC | 131 ms
54,144 KB |
testcase_28 | AC | 133 ms
54,304 KB |
testcase_29 | AC | 136 ms
54,180 KB |
testcase_30 | AC | 134 ms
54,208 KB |
testcase_31 | AC | 129 ms
54,008 KB |
ソースコード
import java.util.ArrayList; import java.util.List; import java.util.Optional; import java.util.Scanner; public class Main { public static void main(String[] args) { Scanner sc = new Scanner(System.in); String s = sc.next(); int ret = new Main().execute(s); System.out.println(ret); } private int execute(String arg) { List<Integer> cIndexs = findIndexs(arg, "c"); List<Integer> wIndexs = findIndexs(arg, "w"); List<Integer> chiwawaLengths = findChiwawaLengths(cIndexs, wIndexs); Optional<Integer> minLength = chiwawaLengths.stream().min((a, b) -> a.compareTo(b)); return minLength.orElse(-1); } private List<Integer> findIndexs(String origin, String target) { List<Integer> ret = new ArrayList<>(); int i = 0; while (origin.indexOf(target, i) > -1) { int index = origin.indexOf(target, i); ret.add(index); i = index + 1; } return ret; } private List<Integer> findChiwawaLengths(List<Integer> cIndexs, List<Integer> wIndexs) { List<Integer> ret = new ArrayList<>(); for (Integer cIndex : cIndexs) { int count = 0; for (Integer wIndex : wIndexs) { if(cIndex.compareTo(wIndex) > 0) { continue; } if(++count == 2) { ret.add(wIndex - cIndex + 1); break; } } } return ret; } }