結果

問題 No.204 ゴールデン・ウィーク(2)
ユーザー tsunabittsunabit
提出日時 2020-03-15 18:36:25
言語 Java21
(openjdk 21)
結果
AC  
実行時間 170 ms / 1,000 ms
コード長 786 bytes
コンパイル時間 4,957 ms
コンパイル使用メモリ 79,624 KB
実行使用メモリ 42,768 KB
最終ジャッジ日時 2024-05-04 01:23:14
合計ジャッジ時間 11,764 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 140 ms
42,364 KB
testcase_01 AC 137 ms
42,204 KB
testcase_02 AC 127 ms
42,200 KB
testcase_03 AC 142 ms
42,676 KB
testcase_04 AC 139 ms
42,756 KB
testcase_05 AC 137 ms
42,436 KB
testcase_06 AC 125 ms
41,992 KB
testcase_07 AC 141 ms
42,512 KB
testcase_08 AC 155 ms
42,432 KB
testcase_09 AC 141 ms
42,352 KB
testcase_10 AC 153 ms
42,320 KB
testcase_11 AC 139 ms
42,272 KB
testcase_12 AC 137 ms
42,280 KB
testcase_13 AC 149 ms
42,248 KB
testcase_14 AC 154 ms
42,264 KB
testcase_15 AC 157 ms
42,488 KB
testcase_16 AC 140 ms
42,608 KB
testcase_17 AC 143 ms
42,616 KB
testcase_18 AC 132 ms
42,188 KB
testcase_19 AC 154 ms
42,412 KB
testcase_20 AC 138 ms
42,404 KB
testcase_21 AC 144 ms
42,520 KB
testcase_22 AC 141 ms
42,400 KB
testcase_23 AC 144 ms
42,472 KB
testcase_24 AC 127 ms
42,400 KB
testcase_25 AC 142 ms
42,240 KB
testcase_26 AC 145 ms
42,592 KB
testcase_27 AC 145 ms
42,196 KB
testcase_28 AC 146 ms
42,640 KB
testcase_29 AC 130 ms
41,924 KB
testcase_30 AC 170 ms
42,228 KB
testcase_31 AC 154 ms
41,912 KB
testcase_32 AC 146 ms
42,396 KB
testcase_33 AC 150 ms
42,444 KB
testcase_34 AC 129 ms
42,228 KB
testcase_35 AC 149 ms
42,488 KB
testcase_36 AC 150 ms
42,424 KB
testcase_37 AC 138 ms
42,332 KB
testcase_38 AC 142 ms
42,768 KB
testcase_39 AC 149 ms
42,552 KB
testcase_40 AC 126 ms
42,376 KB
testcase_41 AC 141 ms
42,640 KB
testcase_42 AC 128 ms
42,164 KB
testcase_43 AC 139 ms
42,436 KB
testcase_44 AC 141 ms
42,532 KB
testcase_45 AC 133 ms
42,060 KB
testcase_46 AC 136 ms
42,196 KB
testcase_47 AC 139 ms
42,768 KB
testcase_48 AC 125 ms
42,388 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