結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 126 ms
41,168 KB
testcase_01 AC 133 ms
41,264 KB
testcase_02 AC 126 ms
41,168 KB
testcase_03 AC 127 ms
41,284 KB
testcase_04 AC 123 ms
41,148 KB
testcase_05 AC 127 ms
41,012 KB
testcase_06 AC 129 ms
41,088 KB
testcase_07 AC 127 ms
41,036 KB
testcase_08 AC 127 ms
41,264 KB
testcase_09 AC 125 ms
41,520 KB
testcase_10 AC 126 ms
41,068 KB
testcase_11 AC 125 ms
40,764 KB
testcase_12 AC 123 ms
40,884 KB
testcase_13 AC 128 ms
41,428 KB
testcase_14 AC 124 ms
41,096 KB
testcase_15 AC 122 ms
41,320 KB
testcase_16 AC 125 ms
41,012 KB
testcase_17 AC 124 ms
41,288 KB
testcase_18 AC 124 ms
41,176 KB
testcase_19 AC 127 ms
41,164 KB
testcase_20 AC 124 ms
40,880 KB
testcase_21 AC 129 ms
41,540 KB
testcase_22 AC 123 ms
41,032 KB
testcase_23 AC 123 ms
41,224 KB
testcase_24 AC 122 ms
41,176 KB
testcase_25 AC 122 ms
41,364 KB
testcase_26 AC 121 ms
41,004 KB
testcase_27 AC 123 ms
41,352 KB
testcase_28 AC 124 ms
41,000 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