結果

問題 No.345 最小チワワ問題
ユーザー takutakutakutaku
提出日時 2020-09-16 11:28:15
言語 Java21
(openjdk 21)
結果
AC  
実行時間 123 ms / 2,000 ms
コード長 1,454 bytes
コンパイル時間 1,819 ms
コンパイル使用メモリ 75,028 KB
実行使用メモリ 54,396 KB
最終ジャッジ日時 2024-06-22 03:07:59
合計ジャッジ時間 6,258 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 103 ms
52,940 KB
testcase_01 AC 117 ms
54,048 KB
testcase_02 AC 103 ms
52,720 KB
testcase_03 AC 102 ms
53,020 KB
testcase_04 AC 123 ms
54,008 KB
testcase_05 AC 113 ms
54,100 KB
testcase_06 AC 104 ms
53,008 KB
testcase_07 AC 111 ms
53,884 KB
testcase_08 AC 113 ms
54,008 KB
testcase_09 AC 111 ms
54,052 KB
testcase_10 AC 112 ms
53,868 KB
testcase_11 AC 110 ms
53,932 KB
testcase_12 AC 123 ms
54,076 KB
testcase_13 AC 121 ms
54,080 KB
testcase_14 AC 122 ms
54,144 KB
testcase_15 AC 108 ms
53,956 KB
testcase_16 AC 115 ms
54,088 KB
testcase_17 AC 108 ms
54,008 KB
testcase_18 AC 111 ms
54,256 KB
testcase_19 AC 100 ms
53,004 KB
testcase_20 AC 111 ms
54,328 KB
testcase_21 AC 108 ms
53,848 KB
testcase_22 AC 113 ms
54,044 KB
testcase_23 AC 113 ms
54,124 KB
testcase_24 AC 100 ms
52,864 KB
testcase_25 AC 106 ms
54,068 KB
testcase_26 AC 108 ms
54,036 KB
testcase_27 AC 118 ms
54,040 KB
testcase_28 AC 112 ms
53,900 KB
testcase_29 AC 94 ms
52,868 KB
testcase_30 AC 101 ms
52,836 KB
testcase_31 AC 110 ms
54,396 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 max = 0;
		
		for(int i = 0; i < s.length; i++) {
		    
		    // cが存在したとき、文字列の何番目に存在したかを保存する
		    if(s[i].equals("c")) {
		        countC = i;
		        
		        // wカウントのリセット
        		int countWW = 0;
		        
		        // 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