結果

問題 No.203 ゴールデン・ウィーク(1)
ユーザー yun_appyun_app
提出日時 2016-05-12 11:54:00
言語 Java21
(openjdk 21)
結果
AC  
実行時間 56 ms / 1,000 ms
コード長 847 bytes
コンパイル時間 1,942 ms
コンパイル使用メモリ 74,224 KB
実行使用メモリ 50,408 KB
最終ジャッジ日時 2024-11-18 09:42:02
合計ジャッジ時間 4,418 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 53 ms
49,924 KB
testcase_01 AC 54 ms
50,408 KB
testcase_02 AC 56 ms
50,072 KB
testcase_03 AC 55 ms
50,368 KB
testcase_04 AC 55 ms
50,280 KB
testcase_05 AC 54 ms
50,028 KB
testcase_06 AC 53 ms
50,104 KB
testcase_07 AC 55 ms
50,348 KB
testcase_08 AC 55 ms
50,264 KB
testcase_09 AC 55 ms
50,168 KB
testcase_10 AC 54 ms
36,692 KB
testcase_11 AC 53 ms
36,980 KB
testcase_12 AC 53 ms
37,124 KB
testcase_13 AC 53 ms
36,896 KB
testcase_14 AC 54 ms
36,988 KB
testcase_15 AC 53 ms
36,668 KB
testcase_16 AC 54 ms
37,204 KB
testcase_17 AC 53 ms
37,032 KB
testcase_18 AC 53 ms
37,020 KB
testcase_19 AC 54 ms
36,688 KB
testcase_20 AC 54 ms
36,892 KB
testcase_21 AC 53 ms
37,096 KB
testcase_22 AC 54 ms
37,200 KB
testcase_23 AC 54 ms
36,836 KB
testcase_24 AC 54 ms
37,080 KB
testcase_25 AC 54 ms
37,284 KB
testcase_26 AC 54 ms
37,204 KB
testcase_27 AC 54 ms
37,184 KB
testcase_28 AC 53 ms
36,964 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

/* package whatever; // don't place package name! */

import java.util.*;
import java.lang.*;
import java.io.*;

/* Name of the class has to be "Main" only if the class is public. */
class Ideone
{
    public static void main (String[] args) throws java.lang.Exception
    {
        // your code goes here
        BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
        String line = br.readLine();
        int max = 0;
        int cnt = 0;
        while(line!=null){
            for(String st:line.split("")){
                if(st.equals("o")){
                    cnt++;
                }else{
                    max = Math.max(max,cnt);
                    cnt = 0;
                }
            }
            line = br.readLine();
        }
        max = Math.max(max,cnt);
        System.out.println(max);
    }

}
0