結果

問題 No.204 ゴールデン・ウィーク(2)
ユーザー tsunabittsunabit
提出日時 2020-03-15 18:34:28
言語 Java21
(openjdk 21)
結果
AC  
実行時間 178 ms / 1,000 ms
コード長 853 bytes
コンパイル時間 3,912 ms
コンパイル使用メモリ 79,584 KB
実行使用メモリ 42,664 KB
最終ジャッジ日時 2024-05-04 01:21:18
合計ジャッジ時間 13,880 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 168 ms
42,164 KB
testcase_01 AC 171 ms
42,656 KB
testcase_02 AC 167 ms
42,280 KB
testcase_03 AC 164 ms
42,496 KB
testcase_04 AC 160 ms
42,384 KB
testcase_05 AC 167 ms
42,272 KB
testcase_06 AC 167 ms
42,400 KB
testcase_07 AC 174 ms
42,312 KB
testcase_08 AC 173 ms
42,400 KB
testcase_09 AC 178 ms
42,340 KB
testcase_10 AC 168 ms
42,608 KB
testcase_11 AC 168 ms
42,440 KB
testcase_12 AC 170 ms
42,312 KB
testcase_13 AC 167 ms
42,544 KB
testcase_14 AC 168 ms
42,408 KB
testcase_15 AC 175 ms
42,252 KB
testcase_16 AC 170 ms
42,412 KB
testcase_17 AC 168 ms
42,080 KB
testcase_18 AC 169 ms
42,440 KB
testcase_19 AC 170 ms
42,200 KB
testcase_20 AC 165 ms
42,444 KB
testcase_21 AC 170 ms
42,300 KB
testcase_22 AC 165 ms
42,480 KB
testcase_23 AC 166 ms
42,520 KB
testcase_24 AC 167 ms
42,072 KB
testcase_25 AC 164 ms
42,440 KB
testcase_26 AC 163 ms
42,360 KB
testcase_27 AC 167 ms
42,608 KB
testcase_28 AC 155 ms
41,936 KB
testcase_29 AC 165 ms
42,496 KB
testcase_30 AC 164 ms
42,380 KB
testcase_31 AC 167 ms
42,384 KB
testcase_32 AC 165 ms
42,344 KB
testcase_33 AC 168 ms
42,368 KB
testcase_34 AC 163 ms
42,244 KB
testcase_35 AC 162 ms
42,092 KB
testcase_36 AC 165 ms
42,368 KB
testcase_37 AC 167 ms
42,520 KB
testcase_38 AC 170 ms
42,664 KB
testcase_39 AC 167 ms
42,512 KB
testcase_40 AC 163 ms
42,472 KB
testcase_41 AC 166 ms
42,344 KB
testcase_42 AC 167 ms
42,204 KB
testcase_43 AC 164 ms
42,348 KB
testcase_44 AC 149 ms
41,824 KB
testcase_45 AC 164 ms
42,204 KB
testcase_46 AC 167 ms
42,384 KB
testcase_47 AC 165 ms
42,656 KB
testcase_48 AC 167 ms
42,520 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
import java.io.*;
import java.math.*;

public class No204 {
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		int d = sc.nextInt();
		String c = "xxxxxxxxxxxxxx" + sc.next() + sc.next() + "xxxxxxxxxxxxxx";
		int ans = 0;
		int t = 0;
		for(int i = 0; i < c.length(); i++) {
			String cc = c.substring(0, i);
			int h = 0, j = i;
			if(c.charAt(i) == 'x') {
				while(h < d && j < c.length()) {
					if(c.charAt(j) == 'x') {
						cc += "o";
						h++;
						j++;
					}else {
						break;
					}
				}
			}else {
				continue;
			}
			cc += c.substring(j, c.length());
			int tmp = 0;
			for(int k = 0; k < c.length(); k++) {
				if(cc.charAt(k) == 'o') {
					tmp++;
				}else {
					ans = Math.max(ans, tmp);
					tmp = 0;
				}
			}
			ans = Math.max(ans, tmp);
		}
		System.out.println(ans);
	}
}
0