結果

問題 No.203 ゴールデン・ウィーク(1)
ユーザー yagi2yagi2
提出日時 2017-04-21 16:39:30
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 496 bytes
コンパイル時間 2,173 ms
コンパイル使用メモリ 76,256 KB
実行使用メモリ 54,588 KB
最終ジャッジ日時 2024-07-20 05:07:12
合計ジャッジ時間 6,707 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 100 ms
39,752 KB
testcase_01 AC 104 ms
39,772 KB
testcase_02 AC 104 ms
40,132 KB
testcase_03 AC 116 ms
41,024 KB
testcase_04 AC 123 ms
41,336 KB
testcase_05 AC 117 ms
41,256 KB
testcase_06 AC 120 ms
41,060 KB
testcase_07 AC 122 ms
41,084 KB
testcase_08 AC 118 ms
41,168 KB
testcase_09 AC 125 ms
41,344 KB
testcase_10 WA -
testcase_11 AC 114 ms
41,232 KB
testcase_12 AC 111 ms
41,148 KB
testcase_13 AC 114 ms
41,140 KB
testcase_14 AC 113 ms
41,144 KB
testcase_15 AC 100 ms
40,192 KB
testcase_16 WA -
testcase_17 AC 100 ms
40,240 KB
testcase_18 AC 101 ms
40,200 KB
testcase_19 AC 114 ms
41,160 KB
testcase_20 AC 113 ms
41,204 KB
testcase_21 AC 114 ms
41,096 KB
testcase_22 AC 114 ms
41,204 KB
testcase_23 AC 117 ms
41,456 KB
testcase_24 AC 117 ms
40,924 KB
testcase_25 AC 117 ms
41,300 KB
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
権限があれば一括ダウンロードができます

ソースコード

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;
            }
        }
        System.out.println(num);
    }
}
0