結果

問題 No.204 ゴールデン・ウィーク(2)
ユーザー thorikawathorikawa
提出日時 2015-05-08 23:15:53
言語 Java21
(openjdk 21)
結果
AC  
実行時間 137 ms / 1,000 ms
コード長 1,028 bytes
コンパイル時間 2,281 ms
コンパイル使用メモリ 76,588 KB
実行使用メモリ 41,516 KB
最終ジャッジ日時 2024-06-06 18:32:36
合計ジャッジ時間 9,818 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 130 ms
40,792 KB
testcase_01 AC 131 ms
41,004 KB
testcase_02 AC 130 ms
41,316 KB
testcase_03 AC 118 ms
40,272 KB
testcase_04 AC 129 ms
41,044 KB
testcase_05 AC 128 ms
40,892 KB
testcase_06 AC 124 ms
40,236 KB
testcase_07 AC 122 ms
39,788 KB
testcase_08 AC 115 ms
39,800 KB
testcase_09 AC 122 ms
40,536 KB
testcase_10 AC 133 ms
40,824 KB
testcase_11 AC 129 ms
41,208 KB
testcase_12 AC 135 ms
41,516 KB
testcase_13 AC 122 ms
39,880 KB
testcase_14 AC 122 ms
40,576 KB
testcase_15 AC 114 ms
40,204 KB
testcase_16 AC 126 ms
40,180 KB
testcase_17 AC 128 ms
41,064 KB
testcase_18 AC 132 ms
41,068 KB
testcase_19 AC 128 ms
41,304 KB
testcase_20 AC 119 ms
40,340 KB
testcase_21 AC 123 ms
39,804 KB
testcase_22 AC 127 ms
41,204 KB
testcase_23 AC 116 ms
40,252 KB
testcase_24 AC 123 ms
41,216 KB
testcase_25 AC 116 ms
40,456 KB
testcase_26 AC 117 ms
40,404 KB
testcase_27 AC 128 ms
40,936 KB
testcase_28 AC 122 ms
39,932 KB
testcase_29 AC 123 ms
39,932 KB
testcase_30 AC 135 ms
41,428 KB
testcase_31 AC 124 ms
41,044 KB
testcase_32 AC 117 ms
40,312 KB
testcase_33 AC 122 ms
41,212 KB
testcase_34 AC 111 ms
40,272 KB
testcase_35 AC 132 ms
41,036 KB
testcase_36 AC 126 ms
41,260 KB
testcase_37 AC 123 ms
39,776 KB
testcase_38 AC 114 ms
40,436 KB
testcase_39 AC 123 ms
40,204 KB
testcase_40 AC 129 ms
41,160 KB
testcase_41 AC 118 ms
40,576 KB
testcase_42 AC 122 ms
40,064 KB
testcase_43 AC 114 ms
40,588 KB
testcase_44 AC 113 ms
40,124 KB
testcase_45 AC 125 ms
40,368 KB
testcase_46 AC 133 ms
41,340 KB
testcase_47 AC 137 ms
41,448 KB
testcase_48 AC 135 ms
41,148 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {
    public static void main(String[] argv) {
        Scanner scanner = new Scanner(System.in);
        int d = scanner.nextInt();
        String s = scanner.next();
        s += scanner.next();
        s = "xxxxxxxxxxxxxx" + s + "xxxxxxxxxxxxxx";
        int res = 0;
        for (int i = 0; i < 42; ++i) {
            int len = 0;
            for (int j = 0; j < d && j < 42 - i; ++j) {
                if (s.charAt(i + j) == 'o') {
                    break;
                }
                len++;
            }
            int count = 0;
            for (int j = 0; j < 42; ++j) {
                boolean isYukyu = (j >= i) && ((j - i) < len);
//                boolean isYukyu = (j >= i) && ((j - i) < d);
                if (s.charAt(j) == 'o' || isYukyu) {
                    count++;
                    res = Math.max(res, count);
                } else {
                    count = 0;
                }
            }
        }
        System.out.println(res);
    }
}
0