結果

問題 No.203 ゴールデン・ウィーク(1)
ユーザー discoNekodiscoNeko
提出日時 2016-04-28 23:33:35
言語 Java21
(openjdk 21)
結果
AC  
実行時間 60 ms / 1,000 ms
コード長 654 bytes
コンパイル時間 2,456 ms
コンパイル使用メモリ 76,076 KB
実行使用メモリ 37,372 KB
最終ジャッジ日時 2024-11-18 09:41:40
合計ジャッジ時間 5,128 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 58 ms
37,288 KB
testcase_01 AC 57 ms
37,116 KB
testcase_02 AC 57 ms
36,936 KB
testcase_03 AC 59 ms
37,356 KB
testcase_04 AC 58 ms
37,152 KB
testcase_05 AC 57 ms
37,316 KB
testcase_06 AC 57 ms
37,160 KB
testcase_07 AC 60 ms
37,276 KB
testcase_08 AC 58 ms
36,940 KB
testcase_09 AC 59 ms
37,276 KB
testcase_10 AC 59 ms
37,332 KB
testcase_11 AC 58 ms
37,372 KB
testcase_12 AC 58 ms
37,136 KB
testcase_13 AC 59 ms
37,228 KB
testcase_14 AC 59 ms
37,012 KB
testcase_15 AC 59 ms
37,156 KB
testcase_16 AC 60 ms
37,060 KB
testcase_17 AC 59 ms
37,232 KB
testcase_18 AC 58 ms
37,044 KB
testcase_19 AC 58 ms
36,924 KB
testcase_20 AC 59 ms
37,196 KB
testcase_21 AC 57 ms
37,052 KB
testcase_22 AC 60 ms
37,336 KB
testcase_23 AC 58 ms
37,356 KB
testcase_24 AC 58 ms
36,876 KB
testcase_25 AC 59 ms
36,804 KB
testcase_26 AC 58 ms
36,940 KB
testcase_27 AC 57 ms
37,276 KB
testcase_28 AC 57 ms
37,120 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
import java.util.*;
import java.math.*;
 
public class Main {
	public static void main(String[] args)throws IOException{
		BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
		StringBuilder sb = new StringBuilder();
		String a = br.readLine()+ br.readLine();
		int l = a.length();
		int chain = 0;
		int max = 0;
		for(int i = 0; i < l; i++){
			char c = a.charAt(i);
			if(c=='o'){
				chain++;
			}else{
				max = Math.max(max,chain);
				chain = 0;
			}
		}
		max = Math.max(max,chain);
		sb.append(max);
		System.out.println(sb);
	}
}
0