結果

問題 No.203 ゴールデン・ウィーク(1)
ユーザー MoominPazMoominPaz
提出日時 2015-10-07 21:28:44
言語 Java21
(openjdk 21)
結果
AC  
実行時間 62 ms / 1,000 ms
コード長 967 bytes
コンパイル時間 2,049 ms
コンパイル使用メモリ 74,912 KB
実行使用メモリ 50,460 KB
最終ジャッジ日時 2024-11-18 09:32:43
合計ジャッジ時間 4,731 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 55 ms
50,276 KB
testcase_01 AC 53 ms
50,228 KB
testcase_02 AC 53 ms
50,248 KB
testcase_03 AC 54 ms
50,424 KB
testcase_04 AC 54 ms
50,224 KB
testcase_05 AC 54 ms
49,892 KB
testcase_06 AC 53 ms
50,276 KB
testcase_07 AC 52 ms
50,224 KB
testcase_08 AC 52 ms
50,304 KB
testcase_09 AC 55 ms
50,156 KB
testcase_10 AC 53 ms
50,336 KB
testcase_11 AC 55 ms
49,980 KB
testcase_12 AC 54 ms
50,272 KB
testcase_13 AC 53 ms
50,164 KB
testcase_14 AC 54 ms
50,292 KB
testcase_15 AC 62 ms
50,260 KB
testcase_16 AC 54 ms
50,260 KB
testcase_17 AC 52 ms
50,392 KB
testcase_18 AC 55 ms
50,308 KB
testcase_19 AC 55 ms
50,328 KB
testcase_20 AC 52 ms
49,848 KB
testcase_21 AC 54 ms
50,172 KB
testcase_22 AC 55 ms
49,892 KB
testcase_23 AC 55 ms
50,312 KB
testcase_24 AC 52 ms
50,460 KB
testcase_25 AC 53 ms
50,144 KB
testcase_26 AC 54 ms
50,232 KB
testcase_27 AC 54 ms
50,248 KB
testcase_28 AC 55 ms
50,264 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;

public class Main {
    BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
    StringBuilder InputChar = new StringBuilder();
    int Result = 0;
    public static void main(String[] args) throws IOException {
        new Main().solve();
    }

    void solve() throws IOException {
        for(int i = 0; i < 2; i++) {
            InputChar.append(br.readLine());
        }
        Result = CountUp(InputChar);
        System.out.println(Result);
    }

    int CountUp(StringBuilder WorkInputChar) {
        int WorkResult = 0;
        int Count = 0;
        for(int i = 0; i < WorkInputChar.length(); i++) {
            if(WorkInputChar.charAt(i) == 'o') {
                Count++;
                WorkResult = Math.max(WorkResult, Count);
            } else {
                Count = 0;
            }
        }
        return WorkResult;
    }
}
0