結果

問題 No.203 ゴールデン・ウィーク(1)
ユーザー rf141rf141
提出日時 2015-08-07 20:36:48
言語 Java21
(openjdk 21)
結果
AC  
実行時間 121 ms / 1,000 ms
コード長 514 bytes
コンパイル時間 3,420 ms
コンパイル使用メモリ 76,356 KB
実行使用メモリ 54,264 KB
最終ジャッジ日時 2024-11-18 09:25:02
合計ジャッジ時間 7,223 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 116 ms
54,172 KB
testcase_01 AC 119 ms
54,264 KB
testcase_02 AC 108 ms
52,952 KB
testcase_03 AC 114 ms
54,156 KB
testcase_04 AC 119 ms
54,056 KB
testcase_05 AC 116 ms
53,888 KB
testcase_06 AC 118 ms
54,132 KB
testcase_07 AC 116 ms
54,072 KB
testcase_08 AC 117 ms
54,100 KB
testcase_09 AC 116 ms
54,024 KB
testcase_10 AC 118 ms
54,168 KB
testcase_11 AC 116 ms
54,252 KB
testcase_12 AC 115 ms
53,760 KB
testcase_13 AC 118 ms
54,084 KB
testcase_14 AC 121 ms
54,056 KB
testcase_15 AC 119 ms
53,740 KB
testcase_16 AC 119 ms
54,044 KB
testcase_17 AC 119 ms
54,008 KB
testcase_18 AC 103 ms
52,760 KB
testcase_19 AC 104 ms
52,924 KB
testcase_20 AC 111 ms
53,972 KB
testcase_21 AC 102 ms
53,128 KB
testcase_22 AC 115 ms
54,140 KB
testcase_23 AC 117 ms
53,936 KB
testcase_24 AC 101 ms
52,944 KB
testcase_25 AC 104 ms
52,752 KB
testcase_26 AC 109 ms
53,384 KB
testcase_27 AC 102 ms
52,828 KB
testcase_28 AC 98 ms
52,912 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
public class gw{
	public static void main(String... args){
		Scanner scan = new Scanner(System.in);
		String str1 = scan.next();
		String str2 = scan.next();
		System.out.println(calc(str1+str2));
	}
	public static int calc(String str){
		int[] counter = new int[14];
		for(int i = 0; i < counter.length;i++){
			counter[i] = 0;
		}
		String[] h = str.split("x",0);
		int max = 0;
		for(int i = 0;i<h.length;i++){
			if(h[i].length() > max){
				max = h[i].length();
			}
		}
		return max;
	}
}
0