結果

問題 No.203 ゴールデン・ウィーク(1)
ユーザー fal_rndfal_rnd
提出日時 2017-08-08 18:12:28
言語 Java21
(openjdk 21)
結果
AC  
実行時間 139 ms / 1,000 ms
コード長 273 bytes
コンパイル時間 2,637 ms
コンパイル使用メモリ 85,668 KB
実行使用メモリ 41,696 KB
最終ジャッジ日時 2024-11-18 10:15:05
合計ジャッジ時間 7,256 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 129 ms
41,244 KB
testcase_01 AC 132 ms
41,432 KB
testcase_02 AC 129 ms
41,308 KB
testcase_03 AC 131 ms
41,108 KB
testcase_04 AC 132 ms
41,384 KB
testcase_05 AC 137 ms
41,288 KB
testcase_06 AC 132 ms
41,284 KB
testcase_07 AC 131 ms
41,316 KB
testcase_08 AC 130 ms
41,408 KB
testcase_09 AC 131 ms
41,100 KB
testcase_10 AC 132 ms
41,484 KB
testcase_11 AC 137 ms
41,472 KB
testcase_12 AC 139 ms
41,456 KB
testcase_13 AC 134 ms
41,232 KB
testcase_14 AC 135 ms
41,012 KB
testcase_15 AC 130 ms
41,520 KB
testcase_16 AC 130 ms
41,376 KB
testcase_17 AC 118 ms
41,300 KB
testcase_18 AC 133 ms
41,360 KB
testcase_19 AC 130 ms
41,432 KB
testcase_20 AC 129 ms
41,492 KB
testcase_21 AC 130 ms
41,696 KB
testcase_22 AC 126 ms
41,364 KB
testcase_23 AC 132 ms
41,592 KB
testcase_24 AC 132 ms
41,236 KB
testcase_25 AC 132 ms
41,180 KB
testcase_26 AC 128 ms
41,460 KB
testcase_27 AC 134 ms
41,468 KB
testcase_28 AC 128 ms
41,592 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Arrays;
import java.util.Scanner;
class M{
	static Scanner s=new Scanner(System.in);
	public static void main(String[]$){
		System.out.println(
				Arrays.stream((s.next()+s.next()).split("x"))
				.mapToInt(String::length)
				.max().orElse(0)
				);
	}
}
0