結果

問題 No.203 ゴールデン・ウィーク(1)
ユーザー thorikawathorikawa
提出日時 2015-05-08 22:23:48
言語 Java21
(openjdk 21)
結果
AC  
実行時間 122 ms / 1,000 ms
コード長 510 bytes
コンパイル時間 1,922 ms
コンパイル使用メモリ 76,132 KB
実行使用メモリ 54,304 KB
最終ジャッジ日時 2024-11-18 08:55:31
合計ジャッジ時間 5,990 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 103 ms
52,604 KB
testcase_01 AC 100 ms
52,496 KB
testcase_02 AC 113 ms
53,976 KB
testcase_03 AC 105 ms
52,752 KB
testcase_04 AC 101 ms
52,832 KB
testcase_05 AC 113 ms
54,100 KB
testcase_06 AC 117 ms
53,844 KB
testcase_07 AC 114 ms
54,304 KB
testcase_08 AC 120 ms
54,008 KB
testcase_09 AC 103 ms
53,012 KB
testcase_10 AC 107 ms
52,980 KB
testcase_11 AC 120 ms
54,044 KB
testcase_12 AC 119 ms
53,884 KB
testcase_13 AC 114 ms
54,024 KB
testcase_14 AC 114 ms
53,892 KB
testcase_15 AC 115 ms
54,004 KB
testcase_16 AC 100 ms
52,864 KB
testcase_17 AC 113 ms
54,152 KB
testcase_18 AC 120 ms
54,100 KB
testcase_19 AC 102 ms
52,916 KB
testcase_20 AC 116 ms
54,132 KB
testcase_21 AC 103 ms
52,964 KB
testcase_22 AC 113 ms
52,944 KB
testcase_23 AC 99 ms
52,916 KB
testcase_24 AC 102 ms
52,920 KB
testcase_25 AC 103 ms
52,916 KB
testcase_26 AC 112 ms
54,212 KB
testcase_27 AC 115 ms
54,128 KB
testcase_28 AC 122 ms
54,064 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {

    public static void main(String[] argv) {
        Scanner scanner = new Scanner(System.in);
        String s = scanner.next();
        s += scanner.next();
        int count = 0;
        int res = 0;
        for (int i = 0; i < 14; i++) {
            if (s.charAt(i) == 'o') {
                count++;
                res = Math.max(res, count);
            } else {
                count = 0;
            }
        }
        System.out.println(res);
    }
}
0