結果

問題 No.204 ゴールデン・ウィーク(2)
ユーザー kenji_shioyakenji_shioya
提出日時 2016-06-23 01:19:18
言語 Java21
(openjdk 21)
結果
AC  
実行時間 158 ms / 1,000 ms
コード長 837 bytes
コンパイル時間 4,002 ms
コンパイル使用メモリ 77,224 KB
実行使用メモリ 56,740 KB
最終ジャッジ日時 2024-06-06 18:46:22
合計ジャッジ時間 12,743 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 141 ms
54,280 KB
testcase_01 AC 154 ms
54,512 KB
testcase_02 AC 140 ms
54,480 KB
testcase_03 AC 149 ms
54,676 KB
testcase_04 AC 148 ms
54,780 KB
testcase_05 AC 140 ms
54,712 KB
testcase_06 AC 151 ms
54,928 KB
testcase_07 AC 136 ms
54,344 KB
testcase_08 AC 135 ms
54,796 KB
testcase_09 AC 140 ms
54,528 KB
testcase_10 AC 136 ms
54,452 KB
testcase_11 AC 140 ms
54,372 KB
testcase_12 AC 148 ms
54,744 KB
testcase_13 AC 150 ms
54,752 KB
testcase_14 AC 152 ms
54,920 KB
testcase_15 AC 155 ms
54,692 KB
testcase_16 AC 137 ms
54,188 KB
testcase_17 AC 132 ms
54,408 KB
testcase_18 AC 147 ms
54,776 KB
testcase_19 AC 141 ms
54,468 KB
testcase_20 AC 149 ms
55,040 KB
testcase_21 AC 156 ms
54,816 KB
testcase_22 AC 142 ms
54,448 KB
testcase_23 AC 147 ms
54,620 KB
testcase_24 AC 158 ms
54,860 KB
testcase_25 AC 145 ms
54,392 KB
testcase_26 AC 138 ms
54,732 KB
testcase_27 AC 153 ms
54,452 KB
testcase_28 AC 146 ms
54,676 KB
testcase_29 AC 134 ms
54,724 KB
testcase_30 AC 147 ms
54,888 KB
testcase_31 AC 143 ms
54,868 KB
testcase_32 AC 144 ms
54,304 KB
testcase_33 AC 149 ms
54,876 KB
testcase_34 AC 131 ms
56,740 KB
testcase_35 AC 146 ms
54,664 KB
testcase_36 AC 130 ms
54,972 KB
testcase_37 AC 131 ms
54,568 KB
testcase_38 AC 138 ms
54,536 KB
testcase_39 AC 132 ms
54,540 KB
testcase_40 AC 143 ms
54,664 KB
testcase_41 AC 155 ms
54,884 KB
testcase_42 AC 137 ms
54,580 KB
testcase_43 AC 146 ms
54,476 KB
testcase_44 AC 149 ms
54,560 KB
testcase_45 AC 145 ms
54,576 KB
testcase_46 AC 153 ms
54,760 KB
testcase_47 AC 141 ms
54,632 KB
testcase_48 AC 135 ms
54,672 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

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

    Scanner sc = new Scanner(System.in);

    int d = sc.nextInt();
    String plus = "xxxxxxxxxxxxxx";
    String weeks = plus + sc.next() + sc.next() + plus;
    char[] wa = weeks.toCharArray();
    int max = 0;
    for(int i = 0; i < wa.length; i++){
      if(wa[i] == 'x'){
        char[] wd = Arrays.copyOf(wa, wa.length);
        for(int j = 0; j < d && i + j < wd.length; j++){
          if(wd[i + j] == 'o'){
            break;
          }
          wd[i + j] = 'o';
        }
        int oCount = 0;
        for(char charInWd: wd){
          if(charInWd == 'o'){
            oCount++;
            max = Math.max(max, oCount);
          }else{
            oCount = 0;
          }
        }
      }
    }
    System.out.println(max);
  }
}
0