結果

問題 No.203 ゴールデン・ウィーク(1)
ユーザー FVRChanFVRChan
提出日時 2017-10-02 21:21:01
言語 Java21
(openjdk 21)
結果
AC  
実行時間 135 ms / 1,000 ms
コード長 419 bytes
コンパイル時間 2,394 ms
コンパイル使用メモリ 77,044 KB
実行使用メモリ 54,400 KB
最終ジャッジ日時 2024-11-18 10:16:28
合計ジャッジ時間 6,895 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 130 ms
54,008 KB
testcase_01 AC 131 ms
53,976 KB
testcase_02 AC 131 ms
54,004 KB
testcase_03 AC 128 ms
54,232 KB
testcase_04 AC 129 ms
53,856 KB
testcase_05 AC 130 ms
54,144 KB
testcase_06 AC 130 ms
54,004 KB
testcase_07 AC 130 ms
54,072 KB
testcase_08 AC 130 ms
53,980 KB
testcase_09 AC 130 ms
54,004 KB
testcase_10 AC 129 ms
54,112 KB
testcase_11 AC 126 ms
53,936 KB
testcase_12 AC 132 ms
54,344 KB
testcase_13 AC 131 ms
53,996 KB
testcase_14 AC 130 ms
54,012 KB
testcase_15 AC 132 ms
54,176 KB
testcase_16 AC 131 ms
54,360 KB
testcase_17 AC 129 ms
54,136 KB
testcase_18 AC 131 ms
54,116 KB
testcase_19 AC 130 ms
54,020 KB
testcase_20 AC 130 ms
54,284 KB
testcase_21 AC 135 ms
53,940 KB
testcase_22 AC 117 ms
52,720 KB
testcase_23 AC 130 ms
54,400 KB
testcase_24 AC 126 ms
54,036 KB
testcase_25 AC 130 ms
54,024 KB
testcase_26 AC 130 ms
54,144 KB
testcase_27 AC 130 ms
53,960 KB
testcase_28 AC 133 ms
54,172 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;
public class Main{
	private static Scanner sc=new Scanner(System.in);
	public static void main(String args[])throws Exception{
		char are[]=(sc.nextLine()+sc.nextLine()).toCharArray();
		int max=0,counter=0;
		for(char element:are){
			if(element == 'o'){
				counter++;
			}else{
				max=Math.max(max,counter);
				counter=0;
			}
		}max=Math.max(max,counter);
		System.out.println(max);
	}
}
0