結果

問題 No.203 ゴールデン・ウィーク(1)
ユーザー YOSHIYOSHI
提出日時 2021-03-05 21:01:30
言語 Java21
(openjdk 21)
結果
AC  
実行時間 61 ms / 1,000 ms
コード長 556 bytes
コンパイル時間 3,622 ms
コンパイル使用メモリ 77,140 KB
実行使用メモリ 37,476 KB
最終ジャッジ日時 2024-10-06 23:37:26
合計ジャッジ時間 6,383 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 57 ms
37,264 KB
testcase_01 AC 59 ms
37,200 KB
testcase_02 AC 60 ms
36,912 KB
testcase_03 AC 57 ms
37,212 KB
testcase_04 AC 59 ms
37,420 KB
testcase_05 AC 61 ms
37,224 KB
testcase_06 AC 61 ms
37,212 KB
testcase_07 AC 59 ms
37,368 KB
testcase_08 AC 59 ms
37,212 KB
testcase_09 AC 58 ms
36,920 KB
testcase_10 AC 57 ms
37,348 KB
testcase_11 AC 58 ms
37,244 KB
testcase_12 AC 59 ms
37,196 KB
testcase_13 AC 57 ms
36,860 KB
testcase_14 AC 57 ms
37,116 KB
testcase_15 AC 59 ms
37,368 KB
testcase_16 AC 60 ms
37,476 KB
testcase_17 AC 58 ms
37,400 KB
testcase_18 AC 58 ms
37,244 KB
testcase_19 AC 59 ms
37,060 KB
testcase_20 AC 58 ms
37,160 KB
testcase_21 AC 60 ms
37,292 KB
testcase_22 AC 60 ms
37,316 KB
testcase_23 AC 58 ms
37,244 KB
testcase_24 AC 58 ms
37,256 KB
testcase_25 AC 58 ms
37,060 KB
testcase_26 AC 59 ms
37,156 KB
testcase_27 AC 57 ms
37,240 KB
testcase_28 AC 58 ms
37,272 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
import java.util.Arrays;
import java.util.List;

public class No00000203_Main {

	public static void main(String[] args) throws IOException {

		BufferedReader br = new BufferedReader(new InputStreamReader(System.in));

		List<String> holidayArr = Arrays.asList((br.readLine() + br.readLine()).split("x+"));

		int max = 0;
		for(String holiday : holidayArr) {
			if(holiday.length() > max) {
				max = holiday.length();
			}
		}
		System.out.println(max);;
	}
}
0