結果

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

テストケース

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

ソースコード

diff #

import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;

public class No00000203_Main2 {

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

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

		String[] holidayArr = (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