結果

問題 No.203 ゴールデン・ウィーク(1)
ユーザー jp_ste
提出日時 2016-05-12 01:24:36
言語 Java
(openjdk 23)
結果
AC  
実行時間 136 ms / 1,000 ms
コード長 743 bytes
コンパイル時間 2,290 ms
コンパイル使用メモリ 77,188 KB
実行使用メモリ 52,364 KB
最終ジャッジ日時 2024-11-18 09:42:14
合計ジャッジ時間 6,848 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 29
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {
    public static void main(String[] args) {
        try (Scanner scan = new Scanner(System.in)) {
            String str = scan.next() + scan.next();
            int max = 0;
            for(int i=0; i<str.length(); i++) {
                if(str.charAt(i) == 'o') {
                    int count = 0;
                    for(int j=i; j<str.length(); j++) {
                        if(str.charAt(j) == 'o') {
                            count++;
                        } else {
                            break;
                        }
                    }
                    max = Math.max(max, count);
                }
            }
            System.out.println(max);
        }
    }
}
0