結果

問題 No.204 ゴールデン・ウィーク(2)
ユーザー DemocoDemoco
提出日時 2015-05-17 18:36:38
言語 Java21
(openjdk 21)
結果
AC  
実行時間 147 ms / 1,000 ms
コード長 981 bytes
コンパイル時間 2,316 ms
コンパイル使用メモリ 79,452 KB
実行使用メモリ 41,532 KB
最終ジャッジ日時 2024-06-06 18:39:36
合計ジャッジ時間 10,603 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 136 ms
40,828 KB
testcase_01 AC 136 ms
41,056 KB
testcase_02 AC 137 ms
41,080 KB
testcase_03 AC 136 ms
41,036 KB
testcase_04 AC 136 ms
41,532 KB
testcase_05 AC 136 ms
41,280 KB
testcase_06 AC 132 ms
40,804 KB
testcase_07 AC 135 ms
41,040 KB
testcase_08 AC 132 ms
40,924 KB
testcase_09 AC 133 ms
41,048 KB
testcase_10 AC 131 ms
40,956 KB
testcase_11 AC 122 ms
40,172 KB
testcase_12 AC 139 ms
41,188 KB
testcase_13 AC 136 ms
41,084 KB
testcase_14 AC 122 ms
40,184 KB
testcase_15 AC 135 ms
41,176 KB
testcase_16 AC 138 ms
41,192 KB
testcase_17 AC 138 ms
41,084 KB
testcase_18 AC 125 ms
40,188 KB
testcase_19 AC 142 ms
40,944 KB
testcase_20 AC 136 ms
40,956 KB
testcase_21 AC 129 ms
40,216 KB
testcase_22 AC 136 ms
41,064 KB
testcase_23 AC 138 ms
41,128 KB
testcase_24 AC 122 ms
40,188 KB
testcase_25 AC 134 ms
41,192 KB
testcase_26 AC 122 ms
40,076 KB
testcase_27 AC 134 ms
40,948 KB
testcase_28 AC 132 ms
41,084 KB
testcase_29 AC 138 ms
41,320 KB
testcase_30 AC 139 ms
41,224 KB
testcase_31 AC 141 ms
41,216 KB
testcase_32 AC 138 ms
41,236 KB
testcase_33 AC 139 ms
41,204 KB
testcase_34 AC 147 ms
40,848 KB
testcase_35 AC 135 ms
41,052 KB
testcase_36 AC 127 ms
40,088 KB
testcase_37 AC 125 ms
40,236 KB
testcase_38 AC 142 ms
41,356 KB
testcase_39 AC 139 ms
40,936 KB
testcase_40 AC 121 ms
40,124 KB
testcase_41 AC 117 ms
39,832 KB
testcase_42 AC 124 ms
39,932 KB
testcase_43 AC 133 ms
41,280 KB
testcase_44 AC 136 ms
41,156 KB
testcase_45 AC 134 ms
41,240 KB
testcase_46 AC 136 ms
41,176 KB
testcase_47 AC 140 ms
41,008 KB
testcase_48 AC 136 ms
41,152 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
class Yukico204 {
	public static void main(String[] args) {
		Scanner stdio = new Scanner(System.in);
		int d = stdio.nextInt();
		String s = stdio.next();
		s += stdio.next();
		s = "xxxxxxxxxxxxxx"+s+"xxxxxxxxxxxxxx";
		int ans = d;
		int cnt=0;
		for(int i=0; i<s.length(); i++) {
			if(s.charAt(i) == 'o') {
				cnt++;
				ans = Math.max(ans, cnt);
			} else {
				cnt = 0;
			}
		}
		if(d==0) {
			System.out.println(ans);
		} else {
			cnt = 0;
			for(int i=0; i<s.length(); i++) {
				cnt = 0;
				boolean b=true;
				for(int j=0; j<s.length(); j++) {
					if((j-i)>=0 && (j-i)<d && b) {
						if(s.charAt(j) == 'o') {
							cnt++;
							ans = Math.max(ans, cnt);
							b = false;
						} else {
							cnt++;
							ans = Math.max(ans, cnt);
						}
					} else if(s.charAt(j) == 'o') {
						cnt++;
						ans = Math.max(ans, cnt);
					}
					else {
						cnt = 0;
					}
				}
				ans = Math.max(ans, cnt);
			}
			System.out.println(ans);
		}
	}
}
0