結果

問題 No.203 ゴールデン・ウィーク(1)
ユーザー Cyberdog-しばいぬ-Cyberdog-しばいぬ-
提出日時 2019-10-11 23:30:05
言語 Java21
(openjdk 21)
結果
AC  
実行時間 171 ms / 1,000 ms
コード長 620 bytes
コンパイル時間 3,071 ms
コンパイル使用メモリ 76,644 KB
実行使用メモリ 55,132 KB
最終ジャッジ日時 2024-05-04 03:30:30
合計ジャッジ時間 8,321 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 163 ms
54,868 KB
testcase_01 AC 164 ms
54,864 KB
testcase_02 AC 165 ms
54,868 KB
testcase_03 AC 164 ms
54,860 KB
testcase_04 AC 164 ms
54,864 KB
testcase_05 AC 166 ms
55,000 KB
testcase_06 AC 167 ms
55,016 KB
testcase_07 AC 171 ms
54,944 KB
testcase_08 AC 165 ms
54,824 KB
testcase_09 AC 162 ms
55,132 KB
testcase_10 AC 167 ms
54,572 KB
testcase_11 AC 167 ms
55,028 KB
testcase_12 AC 169 ms
54,812 KB
testcase_13 AC 166 ms
55,040 KB
testcase_14 AC 171 ms
54,872 KB
testcase_15 AC 164 ms
55,088 KB
testcase_16 AC 168 ms
54,884 KB
testcase_17 AC 163 ms
54,900 KB
testcase_18 AC 167 ms
54,956 KB
testcase_19 AC 168 ms
54,864 KB
testcase_20 AC 167 ms
54,968 KB
testcase_21 AC 165 ms
54,972 KB
testcase_22 AC 170 ms
54,928 KB
testcase_23 AC 164 ms
54,872 KB
testcase_24 AC 162 ms
54,848 KB
testcase_25 AC 165 ms
54,780 KB
testcase_26 AC 167 ms
54,820 KB
testcase_27 AC 164 ms
54,816 KB
testcase_28 AC 164 ms
55,008 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {
    public static void main(String[] args) {
        Scanner scan = new Scanner(System.in);
        int count = 0, tmpCount = 0;
        String str = scan.next() + scan.next() + "d";
        String[] strArray = str.split("");
        for (String holiday : strArray) {
            if (holiday.equals("o")) {
                tmpCount += 1;
            } else {
                if (tmpCount > count) {
                    count = tmpCount;
                }
                tmpCount = 0;
            }
        }
        System.out.println(count);
    }
}
0