結果

問題 No.345 最小チワワ問題
ユーザー takutakutakutaku
提出日時 2020-09-16 11:10:03
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 1,393 bytes
コンパイル時間 1,986 ms
コンパイル使用メモリ 74,844 KB
実行使用メモリ 54,396 KB
最終ジャッジ日時 2024-06-22 03:07:41
合計ジャッジ時間 6,721 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 115 ms
53,880 KB
testcase_01 AC 106 ms
53,980 KB
testcase_02 AC 98 ms
52,764 KB
testcase_03 AC 110 ms
54,088 KB
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 AC 105 ms
53,188 KB
testcase_08 AC 95 ms
52,348 KB
testcase_09 AC 117 ms
54,040 KB
testcase_10 AC 113 ms
54,136 KB
testcase_11 AC 112 ms
54,008 KB
testcase_12 AC 114 ms
54,060 KB
testcase_13 AC 104 ms
53,400 KB
testcase_14 WA -
testcase_15 AC 101 ms
52,960 KB
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 AC 114 ms
54,064 KB
testcase_20 AC 110 ms
54,200 KB
testcase_21 AC 100 ms
52,972 KB
testcase_22 AC 107 ms
53,708 KB
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 AC 110 ms
54,048 KB
testcase_29 WA -
testcase_30 WA -
testcase_31 AC 111 ms
54,136 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
	public static void main(String[] args) {
	    
	    // 入力文字列を取得
		Scanner sc = new Scanner(System.in);
		String str = sc.nextLine();
		
		// 1文字ずつの配列にする
		String[] s = str.split("",0);
		
		int countC = 0;
		int countWW = 0;
		int max = 0;
		
		for(int i = 0; i < s.length; i++) {
		    
		    // cが存在したとき、文字列の何番目に存在したかを保存する
		    if(s[i].equals("c")) {
		        countC = i;
		        
		        // cが存在してから、wが存在するかを探索する
		        for(int j = i; j < s.length; j++) {
		            if(s[j].equals("w")) {
		                countWW++;
		                
		                // wが2個存在したとき、cwwの文字列の長さを計算する
		                if(countWW == 2){
		                    countWW = j;
		                    int num = countWW - countC;
		                    
		                    // 計算結果の辻褄合わせ
		                    if(max == 0) {
		                        max = num + 1;
		                    }else if(max > num) {
		                        max = num + 1;
		                    }
		                }
		            }
		        }
		    }
		}
		
		// 出力処理
		if(max == 0) {
		    System.out.println("-1");
		}else{
		    System.out.println(max);
		}
		
		sc.close();
	}
}
0