結果

問題 No.203 ゴールデン・ウィーク(1)
ユーザー discoNekodiscoNeko
提出日時 2016-04-28 23:31:42
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 625 bytes
コンパイル時間 2,431 ms
コンパイル使用メモリ 75,548 KB
実行使用メモリ 37,300 KB
最終ジャッジ日時 2024-10-04 17:26:28
合計ジャッジ時間 5,109 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 56 ms
37,296 KB
testcase_01 AC 55 ms
37,300 KB
testcase_02 AC 54 ms
37,112 KB
testcase_03 AC 55 ms
37,200 KB
testcase_04 AC 55 ms
36,984 KB
testcase_05 AC 55 ms
37,084 KB
testcase_06 AC 56 ms
37,180 KB
testcase_07 AC 55 ms
36,716 KB
testcase_08 AC 55 ms
36,672 KB
testcase_09 AC 57 ms
37,224 KB
testcase_10 WA -
testcase_11 AC 55 ms
37,100 KB
testcase_12 AC 56 ms
36,960 KB
testcase_13 AC 55 ms
36,724 KB
testcase_14 AC 57 ms
37,112 KB
testcase_15 AC 56 ms
37,216 KB
testcase_16 WA -
testcase_17 AC 54 ms
37,300 KB
testcase_18 AC 55 ms
37,072 KB
testcase_19 AC 55 ms
37,076 KB
testcase_20 AC 56 ms
37,208 KB
testcase_21 AC 55 ms
36,816 KB
testcase_22 AC 56 ms
36,996 KB
testcase_23 AC 55 ms
37,024 KB
testcase_24 AC 54 ms
37,088 KB
testcase_25 AC 56 ms
36,812 KB
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
権限があれば一括ダウンロードができます

ソースコード

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;
			}
		}
		sb.append(max);
		System.out.println(sb);
	}
}
0