結果

問題 No.345 最小チワワ問題
ユーザー matsuyoshi30matsuyoshi30
提出日時 2017-01-26 22:29:42
言語 Java21
(openjdk 21)
結果
AC  
実行時間 142 ms / 2,000 ms
コード長 739 bytes
コンパイル時間 2,053 ms
コンパイル使用メモリ 75,284 KB
実行使用メモリ 55,924 KB
最終ジャッジ日時 2024-09-25 11:56:09
合計ジャッジ時間 7,106 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 124 ms
54,116 KB
testcase_01 AC 126 ms
54,044 KB
testcase_02 AC 124 ms
54,036 KB
testcase_03 AC 127 ms
54,072 KB
testcase_04 AC 125 ms
54,128 KB
testcase_05 AC 123 ms
53,964 KB
testcase_06 AC 121 ms
53,980 KB
testcase_07 AC 125 ms
54,000 KB
testcase_08 AC 128 ms
53,888 KB
testcase_09 AC 128 ms
54,060 KB
testcase_10 AC 128 ms
53,952 KB
testcase_11 AC 128 ms
54,180 KB
testcase_12 AC 141 ms
54,092 KB
testcase_13 AC 142 ms
54,300 KB
testcase_14 AC 140 ms
54,432 KB
testcase_15 AC 127 ms
53,808 KB
testcase_16 AC 122 ms
53,840 KB
testcase_17 AC 122 ms
55,924 KB
testcase_18 AC 112 ms
52,952 KB
testcase_19 AC 122 ms
54,236 KB
testcase_20 AC 124 ms
53,840 KB
testcase_21 AC 126 ms
54,204 KB
testcase_22 AC 122 ms
53,932 KB
testcase_23 AC 108 ms
52,928 KB
testcase_24 AC 122 ms
54,032 KB
testcase_25 AC 126 ms
53,876 KB
testcase_26 AC 123 ms
53,712 KB
testcase_27 AC 127 ms
53,864 KB
testcase_28 AC 124 ms
54,032 KB
testcase_29 AC 124 ms
53,904 KB
testcase_30 AC 124 ms
53,936 KB
testcase_31 AC 122 ms
54,156 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.Collections;

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

        int ans = Integer.MAX_VALUE;

        for(int i=0; i<s.length(); i++) {
            for(int j=i+1; j<s.length(); j++) {
                for(int k=j+1; k<s.length(); k++) {
                    if(s.charAt(i) == 'c' && s.charAt(j) == 'w' && s.charAt(k) == 'w') {
                        ans = Math.min(ans, k-i+1);
                    }
                }
            }
        }

        if(ans == Integer.MAX_VALUE) ans = -1;

        System.out.println(ans);

        in.close();
    }
}
0