結果

問題 No.203 ゴールデン・ウィーク(1)
ユーザー chiho_miyakochiho_miyako
提出日時 2015-05-08 22:33:51
言語 Java21
(openjdk 21)
結果
RE  
(最新)
AC  
(最初)
実行時間 -
コード長 437 bytes
コンパイル時間 2,047 ms
コンパイル使用メモリ 79,644 KB
実行使用メモリ 41,680 KB
最終ジャッジ日時 2024-07-05 18:59:01
合計ジャッジ時間 6,519 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 119 ms
41,076 KB
testcase_01 RE -
testcase_02 AC 120 ms
41,296 KB
testcase_03 AC 123 ms
41,188 KB
testcase_04 AC 121 ms
41,236 KB
testcase_05 AC 110 ms
40,116 KB
testcase_06 AC 111 ms
39,888 KB
testcase_07 AC 121 ms
40,920 KB
testcase_08 AC 119 ms
41,196 KB
testcase_09 AC 121 ms
41,088 KB
testcase_10 AC 107 ms
41,680 KB
testcase_11 AC 108 ms
40,104 KB
testcase_12 AC 118 ms
41,408 KB
testcase_13 AC 119 ms
40,972 KB
testcase_14 AC 119 ms
41,300 KB
testcase_15 AC 123 ms
41,172 KB
testcase_16 AC 120 ms
41,376 KB
testcase_17 AC 112 ms
40,752 KB
testcase_18 AC 122 ms
41,204 KB
testcase_19 AC 105 ms
39,708 KB
testcase_20 AC 120 ms
41,652 KB
testcase_21 AC 106 ms
39,868 KB
testcase_22 AC 108 ms
39,888 KB
testcase_23 AC 120 ms
41,120 KB
testcase_24 AC 120 ms
41,116 KB
testcase_25 AC 107 ms
39,948 KB
testcase_26 AC 114 ms
40,768 KB
testcase_27 AC 118 ms
40,860 KB
testcase_28 AC 121 ms
41,044 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

class Ideone{
	public static void main (String[] args) throws java.lang.Exception
	{
		Scanner koko = new Scanner(System.in);
		String one = koko.next();
		String two = koko.next();
		String whole = one + two;
		String[] who = whole.split("x");
		int[] week = new int[who.length];
		for(int i=0; i<who.length; i++){
			week[i]=who[i].length();
		}
		Arrays.sort(week);
		System.out.println(week[who.length-1]);
	}
}
0