結果

問題 No.345 最小チワワ問題
ユーザー S1hoS1ho
提出日時 2017-02-28 15:42:19
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 1,018 bytes
コンパイル時間 2,979 ms
コンパイル使用メモリ 75,440 KB
実行使用メモリ 56,376 KB
最終ジャッジ日時 2024-06-11 23:28:04
合計ジャッジ時間 7,791 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 132 ms
54,008 KB
testcase_01 AC 130 ms
53,860 KB
testcase_02 AC 129 ms
54,184 KB
testcase_03 AC 130 ms
53,848 KB
testcase_04 AC 131 ms
54,160 KB
testcase_05 AC 131 ms
53,928 KB
testcase_06 AC 130 ms
54,080 KB
testcase_07 AC 128 ms
54,076 KB
testcase_08 AC 131 ms
54,016 KB
testcase_09 AC 129 ms
53,864 KB
testcase_10 AC 132 ms
54,152 KB
testcase_11 AC 130 ms
53,776 KB
testcase_12 AC 133 ms
53,860 KB
testcase_13 AC 131 ms
53,820 KB
testcase_14 AC 132 ms
53,928 KB
testcase_15 AC 133 ms
54,064 KB
testcase_16 AC 132 ms
54,092 KB
testcase_17 AC 131 ms
54,172 KB
testcase_18 AC 131 ms
54,260 KB
testcase_19 WA -
testcase_20 AC 129 ms
53,952 KB
testcase_21 AC 128 ms
53,936 KB
testcase_22 AC 127 ms
53,932 KB
testcase_23 AC 128 ms
54,044 KB
testcase_24 AC 133 ms
53,988 KB
testcase_25 AC 126 ms
53,788 KB
testcase_26 AC 130 ms
53,828 KB
testcase_27 WA -
testcase_28 AC 130 ms
53,884 KB
testcase_29 WA -
testcase_30 AC 137 ms
54,052 KB
testcase_31 AC 131 ms
56,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.ArrayList;
import java.util.Scanner;

public class Main {

    public static void main(String[] args) {
        
        Scanner scanner = new Scanner(System.in);
        
        String s = scanner.next();
        
        char c;
        
        ArrayList<Integer> list = new ArrayList<>();
        
        for(int i=0;i<s.length();i++){
            c = s.charAt(i);
            if(c == 'c'){
                list.add(i);
            }
        }
        
        int w1;
        int w2;
        
        int min = -1;
        
        for(int i=0;i<list.size();i++){
            
            w1 = s.indexOf("w",list.get(i));
            w2 = s.indexOf("w",w1+1);

            if(w1 != -1 && w2 != -1){
                if(min == -1){
                    min = w2 - (list.get(i) - 1);
                }else if(min > w2 - list.get(i) - 1){
                    min = w2 - (list.get(i) - 1);
                }
            }
            
        }
        
        System.out.println(min);
    }
    
}
0