結果

問題 No.204 ゴールデン・ウィーク(2)
ユーザー tsunabittsunabit
提出日時 2020-03-15 18:36:25
言語 Java
(openjdk 23)
結果
AC  
実行時間 157 ms / 1,000 ms
コード長 786 bytes
コンパイル時間 3,058 ms
コンパイル使用メモリ 79,112 KB
実行使用メモリ 55,296 KB
最終ジャッジ日時 2024-11-25 07:11:56
合計ジャッジ時間 11,378 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 157 ms
55,136 KB
testcase_01 AC 146 ms
54,040 KB
testcase_02 AC 141 ms
54,688 KB
testcase_03 AC 142 ms
54,596 KB
testcase_04 AC 133 ms
54,504 KB
testcase_05 AC 141 ms
54,948 KB
testcase_06 AC 138 ms
54,560 KB
testcase_07 AC 145 ms
54,380 KB
testcase_08 AC 151 ms
54,680 KB
testcase_09 AC 130 ms
54,424 KB
testcase_10 AC 127 ms
54,492 KB
testcase_11 AC 137 ms
54,852 KB
testcase_12 AC 136 ms
54,504 KB
testcase_13 AC 152 ms
54,776 KB
testcase_14 AC 144 ms
54,504 KB
testcase_15 AC 148 ms
54,652 KB
testcase_16 AC 143 ms
55,008 KB
testcase_17 AC 139 ms
54,884 KB
testcase_18 AC 129 ms
54,116 KB
testcase_19 AC 144 ms
55,296 KB
testcase_20 AC 126 ms
54,264 KB
testcase_21 AC 125 ms
54,640 KB
testcase_22 AC 153 ms
55,148 KB
testcase_23 AC 149 ms
54,752 KB
testcase_24 AC 147 ms
55,004 KB
testcase_25 AC 142 ms
54,808 KB
testcase_26 AC 130 ms
54,628 KB
testcase_27 AC 142 ms
54,976 KB
testcase_28 AC 140 ms
54,292 KB
testcase_29 AC 126 ms
54,752 KB
testcase_30 AC 139 ms
55,044 KB
testcase_31 AC 140 ms
54,880 KB
testcase_32 AC 142 ms
54,644 KB
testcase_33 AC 148 ms
54,836 KB
testcase_34 AC 124 ms
54,188 KB
testcase_35 AC 128 ms
54,256 KB
testcase_36 AC 136 ms
54,624 KB
testcase_37 AC 134 ms
54,888 KB
testcase_38 AC 140 ms
54,708 KB
testcase_39 AC 136 ms
54,556 KB
testcase_40 AC 144 ms
54,552 KB
testcase_41 AC 140 ms
54,544 KB
testcase_42 AC 140 ms
54,840 KB
testcase_43 AC 139 ms
54,896 KB
testcase_44 AC 137 ms
54,840 KB
testcase_45 AC 143 ms
55,000 KB
testcase_46 AC 140 ms
54,576 KB
testcase_47 AC 142 ms
54,920 KB
testcase_48 AC 127 ms
54,300 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;
			while(h < d && j < c.length()) {
				if(c.charAt(j) == 'x') {
					cc += "o";
					h++;
					j++;
				}else {
					break;
				}
			}
			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