結果

問題 No.203 ゴールデン・ウィーク(1)
ユーザー YukimotoPGYukimotoPG
提出日時 2019-02-14 13:21:43
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 321 bytes
コンパイル時間 2,352 ms
コンパイル使用メモリ 76,792 KB
実行使用メモリ 54,124 KB
最終ジャッジ日時 2024-09-13 11:20:49
合計ジャッジ時間 7,096 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 130 ms
53,856 KB
testcase_01 WA -
testcase_02 AC 129 ms
54,004 KB
testcase_03 AC 128 ms
53,860 KB
testcase_04 AC 129 ms
53,632 KB
testcase_05 AC 129 ms
53,968 KB
testcase_06 AC 129 ms
53,960 KB
testcase_07 AC 128 ms
54,124 KB
testcase_08 AC 129 ms
53,744 KB
testcase_09 AC 130 ms
53,892 KB
testcase_10 AC 129 ms
53,692 KB
testcase_11 AC 130 ms
53,964 KB
testcase_12 AC 130 ms
53,928 KB
testcase_13 AC 129 ms
53,832 KB
testcase_14 AC 130 ms
53,832 KB
testcase_15 AC 129 ms
53,980 KB
testcase_16 AC 129 ms
53,952 KB
testcase_17 AC 128 ms
54,048 KB
testcase_18 AC 131 ms
53,784 KB
testcase_19 AC 128 ms
54,000 KB
testcase_20 AC 114 ms
52,932 KB
testcase_21 AC 128 ms
53,948 KB
testcase_22 AC 131 ms
54,068 KB
testcase_23 AC 128 ms
53,968 KB
testcase_24 AC 129 ms
53,960 KB
testcase_25 AC 131 ms
53,908 KB
testcase_26 AC 134 ms
53,852 KB
testcase_27 AC 128 ms
53,760 KB
testcase_28 AC 129 ms
53,976 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

class Main {
	static Scanner sc = new Scanner(System.in);
	public static void main(String[] args) {
		
		String[] ar = (sc.next()+sc.next()).split("x",0);
		int max = Integer.MIN_VALUE;
		for (int i=0; i<ar.length; i++) {
			max = Math.max(max, ar[i].length());
		}
		System.out.println(max);
		
	}
}
0