結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 166 ms
54,532 KB
testcase_01 AC 161 ms
54,652 KB
testcase_02 AC 162 ms
55,060 KB
testcase_03 AC 164 ms
54,672 KB
testcase_04 AC 161 ms
54,748 KB
testcase_05 AC 165 ms
54,468 KB
testcase_06 AC 166 ms
54,384 KB
testcase_07 AC 164 ms
54,836 KB
testcase_08 AC 171 ms
54,608 KB
testcase_09 AC 174 ms
55,024 KB
testcase_10 AC 166 ms
54,568 KB
testcase_11 AC 164 ms
54,596 KB
testcase_12 AC 161 ms
55,084 KB
testcase_13 AC 165 ms
54,812 KB
testcase_14 AC 161 ms
54,416 KB
testcase_15 AC 165 ms
54,908 KB
testcase_16 AC 165 ms
54,652 KB
testcase_17 AC 163 ms
54,876 KB
testcase_18 AC 169 ms
54,836 KB
testcase_19 AC 165 ms
55,024 KB
testcase_20 AC 164 ms
54,856 KB
testcase_21 AC 175 ms
54,836 KB
testcase_22 AC 164 ms
54,904 KB
testcase_23 AC 170 ms
54,456 KB
testcase_24 AC 169 ms
54,608 KB
testcase_25 AC 166 ms
54,888 KB
testcase_26 AC 162 ms
54,704 KB
testcase_27 AC 165 ms
54,532 KB
testcase_28 AC 160 ms
54,676 KB
testcase_29 AC 161 ms
54,728 KB
testcase_30 AC 163 ms
54,676 KB
testcase_31 AC 164 ms
54,808 KB
testcase_32 AC 163 ms
54,664 KB
testcase_33 AC 166 ms
54,864 KB
testcase_34 AC 161 ms
54,880 KB
testcase_35 AC 160 ms
54,800 KB
testcase_36 AC 159 ms
54,552 KB
testcase_37 AC 162 ms
54,984 KB
testcase_38 AC 162 ms
54,724 KB
testcase_39 AC 164 ms
54,588 KB
testcase_40 AC 161 ms
54,748 KB
testcase_41 AC 168 ms
54,860 KB
testcase_42 AC 161 ms
54,640 KB
testcase_43 AC 161 ms
54,864 KB
testcase_44 AC 158 ms
54,964 KB
testcase_45 AC 160 ms
54,656 KB
testcase_46 AC 163 ms
54,848 KB
testcase_47 AC 163 ms
54,488 KB
testcase_48 AC 162 ms
54,740 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