結果

問題 No.345 最小チワワ問題
ユーザー yagi2yagi2
提出日時 2017-04-20 12:41:42
言語 Java21
(openjdk 21)
結果
AC  
実行時間 124 ms / 2,000 ms
コード長 1,061 bytes
コンパイル時間 2,574 ms
コンパイル使用メモリ 74,988 KB
実行使用メモリ 41,752 KB
最終ジャッジ日時 2024-09-25 11:58:01
合計ジャッジ時間 6,733 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 116 ms
41,604 KB
testcase_01 AC 102 ms
39,896 KB
testcase_02 AC 114 ms
41,224 KB
testcase_03 AC 114 ms
41,012 KB
testcase_04 AC 104 ms
40,344 KB
testcase_05 AC 117 ms
41,072 KB
testcase_06 AC 120 ms
41,152 KB
testcase_07 AC 112 ms
41,144 KB
testcase_08 AC 119 ms
41,452 KB
testcase_09 AC 97 ms
39,388 KB
testcase_10 AC 118 ms
41,168 KB
testcase_11 AC 116 ms
41,228 KB
testcase_12 AC 111 ms
40,416 KB
testcase_13 AC 119 ms
41,588 KB
testcase_14 AC 117 ms
41,224 KB
testcase_15 AC 113 ms
40,996 KB
testcase_16 AC 112 ms
41,220 KB
testcase_17 AC 110 ms
40,920 KB
testcase_18 AC 111 ms
41,228 KB
testcase_19 AC 114 ms
41,368 KB
testcase_20 AC 119 ms
41,496 KB
testcase_21 AC 119 ms
41,148 KB
testcase_22 AC 124 ms
41,192 KB
testcase_23 AC 104 ms
40,320 KB
testcase_24 AC 115 ms
40,984 KB
testcase_25 AC 100 ms
40,204 KB
testcase_26 AC 113 ms
41,328 KB
testcase_27 AC 119 ms
40,712 KB
testcase_28 AC 113 ms
41,164 KB
testcase_29 AC 121 ms
41,144 KB
testcase_30 AC 119 ms
41,220 KB
testcase_31 AC 120 ms
41,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.ArrayList;
import java.util.List;
import java.util.Scanner;

public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        String S = sc.next();

        List<Integer> cwwList = new ArrayList<>();
        for (int i = 0; i < S.length() - 1; i++) {
            int n = 0;
            if (S.charAt(i) == 'c') {
                int wwCount = 0;
                for (int j = i+1; j < S.length(); j++) {
                   if (S.charAt(j) == 'w') wwCount++;
                   if (wwCount == 2) {
                       n = j+1;
                       break;
                   }

                }
            }
            n -= i;
            if (n > 0) {
                cwwList.add(n);
            }
        }

        if (cwwList.size() == 0) {
            System.out.println("-1");
        } else {
            int min = Integer.MAX_VALUE;
            for (Integer n : cwwList) {
                if (min > n) min = n;
            }
            System.out.println(min);
        }
    }
}
0