結果

問題 No.345 最小チワワ問題
ユーザー jp_stejp_ste
提出日時 2016-02-26 22:34:14
言語 Java21
(openjdk 21)
結果
AC  
実行時間 131 ms / 2,000 ms
コード長 950 bytes
コンパイル時間 2,470 ms
コンパイル使用メモリ 74,976 KB
実行使用メモリ 54,236 KB
最終ジャッジ日時 2024-09-25 11:24:24
合計ジャッジ時間 6,997 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 127 ms
53,916 KB
testcase_01 AC 126 ms
54,232 KB
testcase_02 AC 127 ms
53,924 KB
testcase_03 AC 128 ms
54,136 KB
testcase_04 AC 115 ms
52,772 KB
testcase_05 AC 128 ms
53,852 KB
testcase_06 AC 125 ms
53,864 KB
testcase_07 AC 109 ms
52,900 KB
testcase_08 AC 126 ms
54,212 KB
testcase_09 AC 127 ms
53,964 KB
testcase_10 AC 128 ms
53,748 KB
testcase_11 AC 131 ms
54,024 KB
testcase_12 AC 127 ms
54,052 KB
testcase_13 AC 129 ms
53,772 KB
testcase_14 AC 129 ms
53,640 KB
testcase_15 AC 129 ms
53,992 KB
testcase_16 AC 126 ms
53,900 KB
testcase_17 AC 126 ms
53,912 KB
testcase_18 AC 126 ms
54,216 KB
testcase_19 AC 127 ms
53,944 KB
testcase_20 AC 128 ms
53,732 KB
testcase_21 AC 131 ms
54,016 KB
testcase_22 AC 127 ms
53,892 KB
testcase_23 AC 126 ms
53,720 KB
testcase_24 AC 124 ms
54,236 KB
testcase_25 AC 124 ms
53,788 KB
testcase_26 AC 126 ms
54,216 KB
testcase_27 AC 126 ms
54,108 KB
testcase_28 AC 127 ms
53,896 KB
testcase_29 AC 113 ms
53,768 KB
testcase_30 AC 126 ms
54,000 KB
testcase_31 AC 112 ms
52,672 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {
    public static void main(String[] args) {
        try (Scanner scan = new Scanner(System.in)) {
            String S = scan.nextLine();
            int ans = Integer.MAX_VALUE;
            
            for(int i=0; i<S.length(); i++) {
                if(S.charAt(i) == 'c') {
                    for(int j=i+1; j<S.length(); j++) {
                        if(S.charAt(j) == 'w') {
                            for(int k=j+1; k<S.length(); k++) {
                                if(S.charAt(k) == 'w') {
                                    ans = Math.min(ans, k-i+1);
                                }
                            }
                        }
                    }
                }
            }
            
            if(ans == Integer.MAX_VALUE) {
                System.out.println(-1);
            } else {
                System.out.println(ans);
            }
        }
    }
}
0