結果

問題 No.345 最小チワワ問題
ユーザー mizunomi32mizunomi32
提出日時 2016-02-28 22:26:36
言語 Java21
(openjdk 21)
結果
WA  
(最新)
AC  
(最初)
実行時間 -
コード長 1,105 bytes
コンパイル時間 3,060 ms
コンパイル使用メモリ 77,996 KB
実行使用メモリ 41,452 KB
最終ジャッジ日時 2024-10-07 16:19:47
合計ジャッジ時間 7,494 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 100 ms
40,056 KB
testcase_01 AC 108 ms
41,320 KB
testcase_02 AC 96 ms
40,056 KB
testcase_03 AC 111 ms
41,004 KB
testcase_04 AC 101 ms
40,820 KB
testcase_05 AC 118 ms
41,420 KB
testcase_06 AC 109 ms
40,724 KB
testcase_07 AC 111 ms
41,452 KB
testcase_08 AC 107 ms
40,892 KB
testcase_09 AC 111 ms
41,152 KB
testcase_10 AC 109 ms
41,052 KB
testcase_11 AC 112 ms
41,344 KB
testcase_12 AC 109 ms
41,140 KB
testcase_13 AC 112 ms
41,016 KB
testcase_14 AC 96 ms
39,804 KB
testcase_15 AC 113 ms
41,036 KB
testcase_16 AC 111 ms
41,216 KB
testcase_17 WA -
testcase_18 AC 110 ms
41,044 KB
testcase_19 AC 113 ms
41,288 KB
testcase_20 AC 114 ms
41,440 KB
testcase_21 AC 112 ms
41,264 KB
testcase_22 AC 103 ms
40,556 KB
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 AC 111 ms
41,204 KB
testcase_29 AC 110 ms
41,028 KB
testcase_30 AC 101 ms
39,888 KB
testcase_31 AC 122 ms
41,008 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 flag2=0;
        int a=0,b=-1,c=0;



        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;
                }

            }
            if(chars[i] =='c'&& flag2==0){
                flag2 = 1;
                c=i;
            }else if(flag2 == 1 && chars[i] == 'w'){
                flag2 = 2;

            }else if(flag2 == 2 && chars[i] == 'w' ){

                flag2=0;
                if(i-c+1 <b || b==-1){
                    b= i-c+1;
                }

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