結果

問題 No.345 最小チワワ問題
ユーザー mizunomi32mizunomi32
提出日時 2016-02-28 22:17:42
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 749 bytes
コンパイル時間 3,324 ms
コンパイル使用メモリ 74,632 KB
実行使用メモリ 54,548 KB
最終ジャッジ日時 2024-09-24 12:17:52
合計ジャッジ時間 8,290 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 126 ms
53,976 KB
testcase_01 AC 125 ms
53,960 KB
testcase_02 WA -
testcase_03 WA -
testcase_04 AC 123 ms
54,016 KB
testcase_05 AC 125 ms
53,984 KB
testcase_06 AC 123 ms
54,004 KB
testcase_07 AC 124 ms
54,096 KB
testcase_08 AC 123 ms
53,888 KB
testcase_09 AC 124 ms
53,860 KB
testcase_10 AC 150 ms
53,940 KB
testcase_11 AC 123 ms
53,888 KB
testcase_12 AC 127 ms
54,112 KB
testcase_13 AC 125 ms
53,760 KB
testcase_14 AC 125 ms
53,880 KB
testcase_15 AC 111 ms
52,732 KB
testcase_16 AC 125 ms
53,836 KB
testcase_17 WA -
testcase_18 AC 122 ms
54,036 KB
testcase_19 AC 110 ms
52,844 KB
testcase_20 AC 119 ms
53,876 KB
testcase_21 AC 124 ms
53,844 KB
testcase_22 AC 125 ms
53,876 KB
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 AC 125 ms
53,852 KB
testcase_29 AC 126 ms
53,868 KB
testcase_30 AC 125 ms
53,836 KB
testcase_31 AC 125 ms
53,884 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class main {
    public static void main(String[] args){
        Scanner sc = new Scanner(System.in);
        String s = sc.next();
        char[] chars = s.toCharArray();
        int charlonger = s.length();
        int i=0;
        int flag =0;
        int a=0,b=-1;
        


        for(;i<charlonger;i++){
            if(chars[i] == 'c'){
                flag = 1;
                a=i;
            }else if(flag == 1 && chars[i] == 'w'){
                  flag = 2;

            }else if(flag == 2 && chars[i] == 'w' ){
                
                flag=0;
                if(i-a+1 <b || b==-1){
                    b= i-a+1;
                }

            }
        }
            System.out.println(b);
    }
}
0