結果

問題 No.203 ゴールデン・ウィーク(1)
ユーザー yagi2yagi2
提出日時 2017-04-21 16:41:48
言語 Java21
(openjdk 21)
結果
AC  
実行時間 118 ms / 1,000 ms
コード長 530 bytes
コンパイル時間 2,197 ms
コンパイル使用メモリ 76,124 KB
実行使用メモリ 54,264 KB
最終ジャッジ日時 2024-11-18 10:06:13
合計ジャッジ時間 6,548 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 100 ms
52,872 KB
testcase_01 AC 103 ms
52,964 KB
testcase_02 AC 112 ms
54,052 KB
testcase_03 AC 115 ms
54,120 KB
testcase_04 AC 116 ms
54,248 KB
testcase_05 AC 114 ms
53,948 KB
testcase_06 AC 114 ms
54,096 KB
testcase_07 AC 115 ms
54,060 KB
testcase_08 AC 116 ms
54,036 KB
testcase_09 AC 115 ms
54,100 KB
testcase_10 AC 105 ms
53,500 KB
testcase_11 AC 102 ms
52,768 KB
testcase_12 AC 97 ms
52,740 KB
testcase_13 AC 101 ms
52,988 KB
testcase_14 AC 117 ms
54,084 KB
testcase_15 AC 117 ms
54,120 KB
testcase_16 AC 116 ms
54,264 KB
testcase_17 AC 104 ms
53,020 KB
testcase_18 AC 118 ms
54,056 KB
testcase_19 AC 112 ms
53,892 KB
testcase_20 AC 113 ms
54,128 KB
testcase_21 AC 102 ms
52,948 KB
testcase_22 AC 117 ms
53,956 KB
testcase_23 AC 97 ms
52,488 KB
testcase_24 AC 113 ms
53,936 KB
testcase_25 AC 118 ms
54,092 KB
testcase_26 AC 113 ms
53,984 KB
testcase_27 AC 114 ms
53,896 KB
testcase_28 AC 102 ms
52,744 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        String W = sc.next() + sc.next();

        int num = 0;
        int tmp = 0;
        for (String s : W.split("")) {
            if (s.equals("o")) {
                tmp++;
            }
            if (s.equals("x")) {
                if (num < tmp) num = tmp;
                tmp = 0;
            }
        }
        if (num < tmp) num = tmp;
        System.out.println(num);
    }
}
0