結果

問題 No.345 最小チワワ問題
ユーザー キョウチクキョウチク
提出日時 2022-05-17 22:28:38
言語 Java21
(openjdk 21)
結果
AC  
実行時間 126 ms / 2,000 ms
コード長 864 bytes
コンパイル時間 3,673 ms
コンパイル使用メモリ 78,056 KB
実行使用メモリ 41,348 KB
最終ジャッジ日時 2024-09-15 20:33:13
合計ジャッジ時間 8,748 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 112 ms
39,996 KB
testcase_01 AC 123 ms
41,308 KB
testcase_02 AC 106 ms
39,908 KB
testcase_03 AC 105 ms
39,976 KB
testcase_04 AC 114 ms
39,948 KB
testcase_05 AC 124 ms
41,156 KB
testcase_06 AC 126 ms
40,756 KB
testcase_07 AC 116 ms
39,908 KB
testcase_08 AC 124 ms
41,232 KB
testcase_09 AC 113 ms
40,052 KB
testcase_10 AC 111 ms
40,392 KB
testcase_11 AC 109 ms
40,028 KB
testcase_12 AC 110 ms
39,796 KB
testcase_13 AC 123 ms
41,028 KB
testcase_14 AC 124 ms
41,348 KB
testcase_15 AC 122 ms
41,152 KB
testcase_16 AC 124 ms
41,188 KB
testcase_17 AC 122 ms
41,060 KB
testcase_18 AC 123 ms
40,816 KB
testcase_19 AC 125 ms
40,912 KB
testcase_20 AC 122 ms
41,056 KB
testcase_21 AC 123 ms
41,324 KB
testcase_22 AC 121 ms
40,960 KB
testcase_23 AC 122 ms
41,088 KB
testcase_24 AC 108 ms
40,120 KB
testcase_25 AC 121 ms
41,224 KB
testcase_26 AC 108 ms
39,876 KB
testcase_27 AC 123 ms
41,308 KB
testcase_28 AC 123 ms
41,124 KB
testcase_29 AC 111 ms
40,044 KB
testcase_30 AC 111 ms
39,732 KB
testcase_31 AC 116 ms
40,572 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
public class Test11 {
  public static void main(String[] args){
    Scanner sc=new Scanner(System.in);
    String line;
    line=sc.nextLine();
    int n=line.length();
    ArrayList<Integer> c_=new ArrayList<>(),w_=new ArrayList<>();
    for(int i=0;i<n;i++){
      switch(line.charAt(i)){
      case 'c':
        c_.add(i);
        break;
      case 'w':
        w_.add(i);
        break;
      }
    }
    int min=Integer.MAX_VALUE;
    for(int i=0;i<c_.size();i++){
      int tmp=c_.get(i),tmp1=Integer.MAX_VALUE;
      int i1;
      for(i1=1;i1<w_.size();i1++){
        int tmp2=w_.get(i1-1);
        if(tmp<tmp2){
          tmp1=w_.get(i1)-tmp+1;
          break;
        }
      }
      if(tmp1<min) min=tmp1;
      if(i1==w_.size()) break;
    }
    if(min==Integer.MAX_VALUE) min=-1;
    System.out.println(min);
    sc.close();
  }
}
0