結果

問題 No.345 最小チワワ問題
ユーザー kenji_shioyakenji_shioya
提出日時 2016-05-29 07:45:14
言語 Java21
(openjdk 21)
結果
AC  
実行時間 125 ms / 2,000 ms
コード長 741 bytes
コンパイル時間 3,847 ms
コンパイル使用メモリ 79,208 KB
実行使用メモリ 41,592 KB
最終ジャッジ日時 2024-09-25 11:47:15
合計ジャッジ時間 8,169 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 122 ms
41,308 KB
testcase_01 AC 121 ms
41,276 KB
testcase_02 AC 121 ms
41,296 KB
testcase_03 AC 123 ms
41,492 KB
testcase_04 AC 109 ms
39,904 KB
testcase_05 AC 122 ms
41,164 KB
testcase_06 AC 123 ms
41,296 KB
testcase_07 AC 122 ms
41,252 KB
testcase_08 AC 120 ms
41,280 KB
testcase_09 AC 122 ms
41,172 KB
testcase_10 AC 125 ms
41,148 KB
testcase_11 AC 124 ms
41,140 KB
testcase_12 AC 109 ms
40,016 KB
testcase_13 AC 124 ms
41,392 KB
testcase_14 AC 123 ms
41,400 KB
testcase_15 AC 124 ms
41,168 KB
testcase_16 AC 123 ms
41,592 KB
testcase_17 AC 122 ms
41,304 KB
testcase_18 AC 123 ms
41,440 KB
testcase_19 AC 121 ms
41,332 KB
testcase_20 AC 109 ms
40,084 KB
testcase_21 AC 121 ms
41,252 KB
testcase_22 AC 121 ms
41,316 KB
testcase_23 AC 123 ms
41,252 KB
testcase_24 AC 120 ms
41,464 KB
testcase_25 AC 123 ms
41,096 KB
testcase_26 AC 120 ms
41,184 KB
testcase_27 AC 121 ms
41,384 KB
testcase_28 AC 121 ms
40,972 KB
testcase_29 AC 121 ms
41,216 KB
testcase_30 AC 108 ms
40,292 KB
testcase_31 AC 123 ms
41,284 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Exercise31{
  public static void main (String[] args){

    Scanner sc = new Scanner(System.in);

    String str = sc.next();
    char[] charArray = str.toCharArray();

    int min = charArray.length;
    boolean flag = false;

    for (int a = 0; a < charArray.length; a++){
      if (charArray[a] == 'c'){
        int w = 0;
        forW: for (int b = a + 1; b < charArray.length; b++){
          if (charArray[b] == 'w'){
            w++;
          }
          if (w == 2){
            flag = true;
            min = Math.min(min, (b + 1) - a);
            break forW;
          }
        }
      }
    }

    if (flag){
      System.out.println(min);
    }else{
      System.out.println(-1);
    }
  }
}
0