結果

問題 No.345 最小チワワ問題
ユーザー kenji_shioyakenji_shioya
提出日時 2016-05-29 07:23:03
言語 Java21
(openjdk 21)
結果
AC  
実行時間 138 ms / 2,000 ms
コード長 793 bytes
コンパイル時間 3,892 ms
コンパイル使用メモリ 74,988 KB
実行使用メモリ 52,312 KB
最終ジャッジ日時 2024-09-25 11:47:06
合計ジャッジ時間 8,477 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 129 ms
52,196 KB
testcase_01 AC 126 ms
52,184 KB
testcase_02 AC 127 ms
52,004 KB
testcase_03 AC 124 ms
51,996 KB
testcase_04 AC 125 ms
52,116 KB
testcase_05 AC 127 ms
52,004 KB
testcase_06 AC 124 ms
51,876 KB
testcase_07 AC 126 ms
52,156 KB
testcase_08 AC 125 ms
51,636 KB
testcase_09 AC 126 ms
52,060 KB
testcase_10 AC 125 ms
51,836 KB
testcase_11 AC 108 ms
50,940 KB
testcase_12 AC 123 ms
51,752 KB
testcase_13 AC 127 ms
52,084 KB
testcase_14 AC 123 ms
52,156 KB
testcase_15 AC 123 ms
52,156 KB
testcase_16 AC 122 ms
52,028 KB
testcase_17 AC 125 ms
52,020 KB
testcase_18 AC 125 ms
52,172 KB
testcase_19 AC 124 ms
51,896 KB
testcase_20 AC 109 ms
50,984 KB
testcase_21 AC 124 ms
52,256 KB
testcase_22 AC 138 ms
52,180 KB
testcase_23 AC 125 ms
52,172 KB
testcase_24 AC 126 ms
52,308 KB
testcase_25 AC 125 ms
52,144 KB
testcase_26 AC 126 ms
52,264 KB
testcase_27 AC 125 ms
52,132 KB
testcase_28 AC 129 ms
52,280 KB
testcase_29 AC 124 ms
52,176 KB
testcase_30 AC 126 ms
51,840 KB
testcase_31 AC 125 ms
52,312 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'){
        for (int b = a + 1; b < charArray.length; b++){
          if (charArray[b] == 'w'){
            for (int c = b + 1; c < charArray.length; c++){
              if (charArray[c] == 'w'){
                  flag = true;
                  min = Math.min(min, (c + 1) - a);
                }
              }
            }
          }
        }
      }
    if (flag){
      System.out.println(min);
    }else{
      System.out.println(-1);
    }
  }
}
0