結果

問題 No.345 最小チワワ問題
ユーザー kohaku_kohakukohaku_kohaku
提出日時 2016-11-12 19:07:20
言語 Java21
(openjdk 21)
結果
AC  
実行時間 120 ms / 2,000 ms
コード長 661 bytes
コンパイル時間 1,862 ms
コンパイル使用メモリ 74,264 KB
実行使用メモリ 54,156 KB
最終ジャッジ日時 2024-09-25 11:55:33
合計ジャッジ時間 6,394 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 109 ms
54,156 KB
testcase_01 AC 112 ms
40,892 KB
testcase_02 AC 99 ms
39,960 KB
testcase_03 AC 113 ms
41,364 KB
testcase_04 AC 117 ms
41,148 KB
testcase_05 AC 115 ms
41,120 KB
testcase_06 AC 115 ms
41,080 KB
testcase_07 AC 114 ms
41,180 KB
testcase_08 AC 103 ms
39,904 KB
testcase_09 AC 112 ms
41,188 KB
testcase_10 AC 114 ms
41,312 KB
testcase_11 AC 115 ms
41,028 KB
testcase_12 AC 120 ms
41,144 KB
testcase_13 AC 106 ms
40,052 KB
testcase_14 AC 117 ms
41,212 KB
testcase_15 AC 113 ms
40,980 KB
testcase_16 AC 117 ms
41,588 KB
testcase_17 AC 111 ms
41,192 KB
testcase_18 AC 114 ms
40,836 KB
testcase_19 AC 120 ms
41,096 KB
testcase_20 AC 100 ms
40,164 KB
testcase_21 AC 114 ms
41,308 KB
testcase_22 AC 113 ms
40,936 KB
testcase_23 AC 101 ms
39,832 KB
testcase_24 AC 117 ms
40,996 KB
testcase_25 AC 102 ms
40,016 KB
testcase_26 AC 115 ms
41,056 KB
testcase_27 AC 110 ms
40,884 KB
testcase_28 AC 102 ms
40,096 KB
testcase_29 AC 112 ms
41,356 KB
testcase_30 AC 117 ms
41,380 KB
testcase_31 AC 112 ms
41,356 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        String S = sc.next();
        int a = S.indexOf("c");
        int min = Integer.MAX_VALUE;
        while(a!=-1){
            S = S.substring(a+1);
            int b = S.indexOf("w");
            String t = S.substring(b+1);
            int c = t.indexOf("w");
            if(c!=-1 && min>b+c+3){
                min = b+c+3;
            }
            a = S.indexOf("c");
        }
        if(min==Integer.MAX_VALUE){
            System.out.println(-1);
        }else{
            System.out.println(min);
        }
    }
}
0