結果

問題 No.204 ゴールデン・ウィーク(2)
ユーザー kenji_shioyakenji_shioya
提出日時 2016-06-23 01:19:18
言語 Java
(openjdk 23)
結果
AC  
実行時間 168 ms / 1,000 ms
コード長 837 bytes
コンパイル時間 6,283 ms
コンパイル使用メモリ 84,300 KB
実行使用メモリ 42,720 KB
最終ジャッジ日時 2024-12-24 11:55:31
合計ジャッジ時間 14,599 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 157 ms
42,496 KB
testcase_01 AC 154 ms
42,544 KB
testcase_02 AC 150 ms
42,476 KB
testcase_03 AC 153 ms
42,600 KB
testcase_04 AC 144 ms
41,984 KB
testcase_05 AC 158 ms
42,496 KB
testcase_06 AC 155 ms
42,432 KB
testcase_07 AC 152 ms
42,700 KB
testcase_08 AC 161 ms
42,544 KB
testcase_09 AC 141 ms
42,572 KB
testcase_10 AC 157 ms
42,444 KB
testcase_11 AC 155 ms
42,296 KB
testcase_12 AC 141 ms
42,304 KB
testcase_13 AC 160 ms
42,444 KB
testcase_14 AC 153 ms
42,476 KB
testcase_15 AC 155 ms
42,552 KB
testcase_16 AC 153 ms
42,364 KB
testcase_17 AC 154 ms
42,108 KB
testcase_18 AC 157 ms
42,260 KB
testcase_19 AC 152 ms
42,320 KB
testcase_20 AC 162 ms
42,372 KB
testcase_21 AC 156 ms
42,444 KB
testcase_22 AC 152 ms
42,216 KB
testcase_23 AC 156 ms
42,580 KB
testcase_24 AC 155 ms
42,332 KB
testcase_25 AC 159 ms
42,488 KB
testcase_26 AC 152 ms
42,616 KB
testcase_27 AC 138 ms
42,428 KB
testcase_28 AC 141 ms
42,188 KB
testcase_29 AC 137 ms
42,720 KB
testcase_30 AC 137 ms
42,368 KB
testcase_31 AC 165 ms
42,624 KB
testcase_32 AC 136 ms
42,600 KB
testcase_33 AC 141 ms
42,368 KB
testcase_34 AC 154 ms
42,276 KB
testcase_35 AC 154 ms
42,604 KB
testcase_36 AC 145 ms
42,396 KB
testcase_37 AC 163 ms
42,300 KB
testcase_38 AC 158 ms
42,260 KB
testcase_39 AC 143 ms
42,720 KB
testcase_40 AC 168 ms
42,324 KB
testcase_41 AC 158 ms
42,496 KB
testcase_42 AC 140 ms
42,444 KB
testcase_43 AC 140 ms
42,432 KB
testcase_44 AC 153 ms
42,296 KB
testcase_45 AC 148 ms
42,576 KB
testcase_46 AC 162 ms
42,672 KB
testcase_47 AC 157 ms
42,496 KB
testcase_48 AC 140 ms
42,320 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