結果

問題 No.203 ゴールデン・ウィーク(1)
ユーザー matsuyoshi30matsuyoshi30
提出日時 2017-01-19 23:07:35
言語 Java21
(openjdk 21)
結果
AC  
実行時間 138 ms / 1,000 ms
コード長 688 bytes
コンパイル時間 2,430 ms
コンパイル使用メモリ 75,144 KB
実行使用メモリ 54,248 KB
最終ジャッジ日時 2024-11-18 10:03:36
合計ジャッジ時間 7,050 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 126 ms
53,876 KB
testcase_01 AC 127 ms
54,248 KB
testcase_02 AC 138 ms
54,132 KB
testcase_03 AC 136 ms
53,988 KB
testcase_04 AC 135 ms
54,044 KB
testcase_05 AC 129 ms
54,048 KB
testcase_06 AC 128 ms
53,956 KB
testcase_07 AC 130 ms
54,000 KB
testcase_08 AC 130 ms
54,000 KB
testcase_09 AC 135 ms
53,864 KB
testcase_10 AC 127 ms
53,928 KB
testcase_11 AC 130 ms
54,080 KB
testcase_12 AC 128 ms
54,116 KB
testcase_13 AC 128 ms
53,812 KB
testcase_14 AC 127 ms
54,000 KB
testcase_15 AC 130 ms
54,184 KB
testcase_16 AC 129 ms
54,020 KB
testcase_17 AC 129 ms
54,112 KB
testcase_18 AC 136 ms
53,872 KB
testcase_19 AC 114 ms
53,064 KB
testcase_20 AC 128 ms
54,164 KB
testcase_21 AC 127 ms
54,032 KB
testcase_22 AC 127 ms
53,872 KB
testcase_23 AC 127 ms
53,924 KB
testcase_24 AC 128 ms
54,024 KB
testcase_25 AC 130 ms
54,108 KB
testcase_26 AC 131 ms
53,980 KB
testcase_27 AC 129 ms
54,160 KB
testcase_28 AC 130 ms
53,904 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.Collections;

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

        int count = 0;
        int ans = 0;

        for(int i=0; i<2; i++) {
            String s1 = in.next();
            char[] c1 = s1.toCharArray();
            for(int k=0; k<s1.length(); k++) {
                if(c1[k] == 'o') {
                    count++;
                    ans = Math.max(ans, count);
                } else {
                    count = 0;
                }
            }
        }

        System.out.println(ans);

        in.close();
    }
}
0