結果

問題 No.203 ゴールデン・ウィーク(1)
ユーザー YukimotoPGYukimotoPG
提出日時 2019-02-14 13:22:16
言語 Java21
(openjdk 21)
結果
AC  
実行時間 120 ms / 1,000 ms
コード長 305 bytes
コンパイル時間 1,901 ms
コンパイル使用メモリ 76,448 KB
実行使用メモリ 54,296 KB
最終ジャッジ日時 2024-11-18 10:35:32
合計ジャッジ時間 6,052 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 117 ms
54,096 KB
testcase_01 AC 117 ms
53,876 KB
testcase_02 AC 103 ms
53,100 KB
testcase_03 AC 120 ms
53,860 KB
testcase_04 AC 119 ms
54,012 KB
testcase_05 AC 119 ms
54,296 KB
testcase_06 AC 116 ms
54,172 KB
testcase_07 AC 116 ms
53,932 KB
testcase_08 AC 104 ms
53,024 KB
testcase_09 AC 119 ms
54,096 KB
testcase_10 AC 109 ms
53,936 KB
testcase_11 AC 115 ms
54,120 KB
testcase_12 AC 103 ms
52,864 KB
testcase_13 AC 104 ms
52,900 KB
testcase_14 AC 112 ms
54,040 KB
testcase_15 AC 112 ms
54,112 KB
testcase_16 AC 115 ms
54,136 KB
testcase_17 AC 106 ms
52,888 KB
testcase_18 AC 109 ms
54,072 KB
testcase_19 AC 117 ms
54,028 KB
testcase_20 AC 117 ms
54,088 KB
testcase_21 AC 116 ms
54,140 KB
testcase_22 AC 115 ms
54,148 KB
testcase_23 AC 113 ms
53,968 KB
testcase_24 AC 110 ms
53,904 KB
testcase_25 AC 114 ms
53,796 KB
testcase_26 AC 117 ms
53,820 KB
testcase_27 AC 99 ms
52,556 KB
testcase_28 AC 116 ms
54,200 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 = 0;
		for (int i=0; i<ar.length; i++) {
			max = Math.max(max, ar[i].length());
		}
		System.out.println(max);
		
	}
}
0