結果

問題 No.203 ゴールデン・ウィーク(1)
ユーザー rf141rf141
提出日時 2015-08-07 20:24:19
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 688 bytes
コンパイル時間 4,078 ms
コンパイル使用メモリ 76,608 KB
実行使用メモリ 41,588 KB
最終ジャッジ日時 2024-07-18 05:02:28
合計ジャッジ時間 7,658 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 116 ms
41,468 KB
testcase_01 AC 119 ms
41,388 KB
testcase_02 AC 121 ms
41,172 KB
testcase_03 AC 123 ms
41,272 KB
testcase_04 AC 125 ms
40,972 KB
testcase_05 AC 120 ms
41,460 KB
testcase_06 AC 122 ms
41,292 KB
testcase_07 AC 121 ms
41,248 KB
testcase_08 AC 124 ms
41,332 KB
testcase_09 AC 125 ms
41,476 KB
testcase_10 WA -
testcase_11 AC 118 ms
41,520 KB
testcase_12 AC 113 ms
40,120 KB
testcase_13 AC 118 ms
41,404 KB
testcase_14 AC 116 ms
41,588 KB
testcase_15 AC 105 ms
41,280 KB
testcase_16 WA -
testcase_17 AC 119 ms
41,344 KB
testcase_18 AC 103 ms
41,444 KB
testcase_19 AC 113 ms
41,172 KB
testcase_20 AC 112 ms
41,232 KB
testcase_21 AC 119 ms
41,336 KB
testcase_22 AC 112 ms
41,292 KB
testcase_23 AC 122 ms
41,468 KB
testcase_24 AC 126 ms
41,500 KB
testcase_25 AC 119 ms
41,196 KB
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
権限があれば一括ダウンロードができます

ソースコード

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;
		}
		int count = 0;
		int space = 0;
		for(int i = 0; i < str.length(); i++){
			if(str.substring(i,i+1).equals("o")){
				count++;
			}else{
				counter[space] = count;
				count=0;
				space++;
			}
		}
		int max = counter[0];
		for(int i = 1; i < space; i++){
			if(max < counter[i]){
				max = counter[i];
			}
		}

		return max;
	}
}
0