結果

問題 No.203 ゴールデン・ウィーク(1)
ユーザー samplelpmassamplelpmas
提出日時 2016-11-26 14:06:55
言語 Java21
(openjdk 21)
結果
AC  
実行時間 134 ms / 1,000 ms
コード長 662 bytes
コンパイル時間 2,303 ms
コンパイル使用メモリ 76,584 KB
実行使用メモリ 41,680 KB
最終ジャッジ日時 2024-11-18 09:56:19
合計ジャッジ時間 6,085 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 116 ms
41,448 KB
testcase_01 AC 115 ms
41,184 KB
testcase_02 AC 117 ms
41,232 KB
testcase_03 AC 97 ms
41,424 KB
testcase_04 AC 117 ms
41,472 KB
testcase_05 AC 115 ms
41,292 KB
testcase_06 AC 115 ms
41,136 KB
testcase_07 AC 106 ms
41,400 KB
testcase_08 AC 108 ms
41,504 KB
testcase_09 AC 115 ms
41,144 KB
testcase_10 AC 113 ms
41,140 KB
testcase_11 AC 115 ms
41,084 KB
testcase_12 AC 105 ms
41,316 KB
testcase_13 AC 114 ms
41,552 KB
testcase_14 AC 115 ms
41,520 KB
testcase_15 AC 112 ms
41,096 KB
testcase_16 AC 110 ms
41,380 KB
testcase_17 AC 116 ms
41,680 KB
testcase_18 AC 101 ms
41,384 KB
testcase_19 AC 114 ms
41,236 KB
testcase_20 AC 116 ms
41,304 KB
testcase_21 AC 113 ms
41,068 KB
testcase_22 AC 115 ms
41,356 KB
testcase_23 AC 114 ms
41,244 KB
testcase_24 AC 134 ms
41,284 KB
testcase_25 AC 118 ms
41,336 KB
testcase_26 AC 118 ms
41,372 KB
testcase_27 AC 106 ms
41,340 KB
testcase_28 AC 121 ms
41,332 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {

    public static void main(String[] args) {

        Scanner sc = new Scanner(System.in);

        String twoWeeks = sc.next() + sc.next();

        int holidayCount = 0;
        int holidayMax = 0;

        for (int i = 0; i < twoWeeks.length(); i++) {

            if (twoWeeks.charAt(i) == 'o') {

                holidayCount++;

                if (holidayMax < holidayCount) {
                    holidayMax = holidayCount;
                }

            } else if (twoWeeks.charAt(i) == 'x') {

                holidayCount = 0;

            }

        }

        System.out.println(holidayMax);

    }

}
0