結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 160 ms
54,968 KB
testcase_01 AC 159 ms
54,704 KB
testcase_02 AC 159 ms
54,864 KB
testcase_03 AC 163 ms
54,604 KB
testcase_04 AC 158 ms
54,696 KB
testcase_05 AC 158 ms
54,992 KB
testcase_06 AC 157 ms
54,468 KB
testcase_07 AC 154 ms
55,024 KB
testcase_08 AC 158 ms
54,772 KB
testcase_09 AC 159 ms
54,504 KB
testcase_10 AC 156 ms
54,812 KB
testcase_11 AC 159 ms
54,656 KB
testcase_12 AC 154 ms
54,800 KB
testcase_13 AC 149 ms
54,140 KB
testcase_14 AC 162 ms
54,800 KB
testcase_15 AC 161 ms
55,052 KB
testcase_16 AC 161 ms
54,772 KB
testcase_17 AC 155 ms
54,988 KB
testcase_18 AC 156 ms
54,832 KB
testcase_19 AC 157 ms
55,132 KB
testcase_20 AC 161 ms
54,396 KB
testcase_21 AC 155 ms
54,540 KB
testcase_22 AC 155 ms
54,644 KB
testcase_23 AC 156 ms
54,612 KB
testcase_24 AC 158 ms
54,872 KB
testcase_25 AC 158 ms
54,732 KB
testcase_26 AC 160 ms
54,724 KB
testcase_27 AC 159 ms
54,660 KB
testcase_28 AC 156 ms
54,720 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