結果

問題 No.345 最小チワワ問題
ユーザー tentententen
提出日時 2020-11-11 14:27:28
言語 Java
(openjdk 23)
結果
AC  
実行時間 117 ms / 2,000 ms
コード長 912 bytes
コンパイル時間 2,485 ms
コンパイル使用メモリ 77,248 KB
実行使用メモリ 41,708 KB
最終ジャッジ日時 2024-07-22 18:28:38
合計ジャッジ時間 6,773 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 96 ms
41,444 KB
testcase_01 AC 109 ms
41,100 KB
testcase_02 AC 104 ms
41,176 KB
testcase_03 AC 98 ms
41,204 KB
testcase_04 AC 95 ms
41,264 KB
testcase_05 AC 102 ms
41,180 KB
testcase_06 AC 102 ms
41,068 KB
testcase_07 AC 99 ms
41,076 KB
testcase_08 AC 110 ms
41,356 KB
testcase_09 AC 94 ms
41,368 KB
testcase_10 AC 103 ms
41,708 KB
testcase_11 AC 102 ms
41,200 KB
testcase_12 AC 95 ms
41,544 KB
testcase_13 AC 103 ms
41,484 KB
testcase_14 AC 106 ms
41,276 KB
testcase_15 AC 104 ms
41,204 KB
testcase_16 AC 107 ms
41,380 KB
testcase_17 AC 100 ms
41,452 KB
testcase_18 AC 95 ms
41,440 KB
testcase_19 AC 108 ms
41,064 KB
testcase_20 AC 103 ms
41,224 KB
testcase_21 AC 99 ms
41,384 KB
testcase_22 AC 106 ms
41,172 KB
testcase_23 AC 106 ms
41,284 KB
testcase_24 AC 107 ms
41,148 KB
testcase_25 AC 117 ms
41,320 KB
testcase_26 AC 102 ms
41,284 KB
testcase_27 AC 97 ms
41,352 KB
testcase_28 AC 113 ms
41,300 KB
testcase_29 AC 97 ms
41,244 KB
testcase_30 AC 106 ms
41,372 KB
testcase_31 AC 105 ms
41,332 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        char[] arr = sc.next().toCharArray();
        TreeSet<Integer> cPosition = new TreeSet<>();
        TreeSet<Integer> wPosition = new TreeSet<>();
        for (int i = 0; i < arr.length; i++) {
            if (arr[i] == 'c') {
                cPosition.add(i);
            } else if (arr[i] == 'w') {
                wPosition.add(i);
            }
        }
        wPosition.add(Integer.MAX_VALUE - 2);
        wPosition.add(Integer.MAX_VALUE - 1);
        int min = Integer.MAX_VALUE;
        for (int x : cPosition) {
            int y = wPosition.higher(wPosition.higher(x));
            min = Math.min(min, y - x + 1);
        }
        if (min > arr.length) {
            System.out.println(-1);
        } else {
            System.out.println(min);
        }
    }
}
0