結果

問題 No.203 ゴールデン・ウィーク(1)
ユーザー 🐧しゅんチャマ🌸🐧しゅんチャマ🌸
提出日時 2023-09-14 22:01:25
言語 Java21
(openjdk 21)
結果
AC  
実行時間 129 ms / 1,000 ms
コード長 796 bytes
コンパイル時間 2,264 ms
コンパイル使用メモリ 74,060 KB
実行使用メモリ 54,104 KB
最終ジャッジ日時 2024-07-02 04:46:46
合計ジャッジ時間 6,643 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 124 ms
53,732 KB
testcase_01 AC 127 ms
53,916 KB
testcase_02 AC 126 ms
53,868 KB
testcase_03 AC 126 ms
54,104 KB
testcase_04 AC 125 ms
54,048 KB
testcase_05 AC 125 ms
53,728 KB
testcase_06 AC 126 ms
53,940 KB
testcase_07 AC 127 ms
53,904 KB
testcase_08 AC 129 ms
53,640 KB
testcase_09 AC 127 ms
53,636 KB
testcase_10 AC 124 ms
54,032 KB
testcase_11 AC 128 ms
53,804 KB
testcase_12 AC 126 ms
53,656 KB
testcase_13 AC 126 ms
53,916 KB
testcase_14 AC 125 ms
53,896 KB
testcase_15 AC 125 ms
53,804 KB
testcase_16 AC 128 ms
53,724 KB
testcase_17 AC 123 ms
53,944 KB
testcase_18 AC 126 ms
53,764 KB
testcase_19 AC 127 ms
53,800 KB
testcase_20 AC 126 ms
53,796 KB
testcase_21 AC 123 ms
53,824 KB
testcase_22 AC 126 ms
54,028 KB
testcase_23 AC 127 ms
53,784 KB
testcase_24 AC 129 ms
53,840 KB
testcase_25 AC 123 ms
53,956 KB
testcase_26 AC 125 ms
53,888 KB
testcase_27 AC 110 ms
52,900 KB
testcase_28 AC 123 ms
53,524 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

class Y203{
    public static void main(String args[]){
        Scanner sc=new Scanner(System.in);
        String w1=sc.next();
        String w2=sc.next();
        int count=0;
        int ans=-2000000000;
        for(int i=0;i<w1.length();i++){
            char ch=w1.charAt(i);
            if(ch=='o'){
                count++;
            }else{
                count=0;
            }
            if(ans<=count){
                ans=count;
            }
        }
        for(int i=0;i<w2.length();i++){
            char ch=w2.charAt(i);
            if(ch=='o'){
                count++;
            }else{
                count=0;
            }
            if(ans<=count){
                ans=count;
            }
        }
        System.out.println(ans);
    }
}
0