結果

問題 No.345 最小チワワ問題
ユーザー kohaku_kohakukohaku_kohaku
提出日時 2016-11-12 19:04:40
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 684 bytes
コンパイル時間 1,951 ms
コンパイル使用メモリ 73,972 KB
実行使用メモリ 41,432 KB
最終ジャッジ日時 2024-11-25 21:23:09
合計ジャッジ時間 6,005 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 98 ms
41,056 KB
testcase_01 AC 101 ms
41,432 KB
testcase_02 AC 106 ms
41,168 KB
testcase_03 AC 107 ms
40,948 KB
testcase_04 AC 105 ms
41,196 KB
testcase_05 AC 108 ms
41,080 KB
testcase_06 AC 100 ms
41,128 KB
testcase_07 AC 107 ms
40,796 KB
testcase_08 AC 103 ms
41,112 KB
testcase_09 AC 104 ms
40,992 KB
testcase_10 AC 108 ms
40,948 KB
testcase_11 AC 109 ms
41,064 KB
testcase_12 WA -
testcase_13 AC 97 ms
41,056 KB
testcase_14 AC 108 ms
41,160 KB
testcase_15 AC 110 ms
41,068 KB
testcase_16 AC 109 ms
41,060 KB
testcase_17 AC 98 ms
41,340 KB
testcase_18 AC 102 ms
40,572 KB
testcase_19 AC 108 ms
40,996 KB
testcase_20 AC 99 ms
40,904 KB
testcase_21 WA -
testcase_22 AC 109 ms
41,164 KB
testcase_23 AC 98 ms
40,152 KB
testcase_24 AC 98 ms
40,264 KB
testcase_25 AC 108 ms
41,024 KB
testcase_26 AC 98 ms
41,196 KB
testcase_27 AC 97 ms
40,928 KB
testcase_28 WA -
testcase_29 AC 108 ms
40,744 KB
testcase_30 AC 92 ms
40,920 KB
testcase_31 AC 107 ms
41,296 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;
        if(a==-1){
            System.out.println(-1);
        }else{
            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");
            }
            System.out.println(min);
        }
    }
}
0