結果

問題 No.204 ゴールデン・ウィーク(2)
ユーザー 37zigen37zigen
提出日時 2020-03-19 01:10:36
言語 Java21
(openjdk 21)
結果
AC  
実行時間 183 ms / 1,000 ms
コード長 861 bytes
コンパイル時間 2,707 ms
コンパイル使用メモリ 80,352 KB
実行使用メモリ 42,596 KB
最終ジャッジ日時 2024-05-08 02:58:36
合計ジャッジ時間 12,499 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 159 ms
42,448 KB
testcase_01 AC 163 ms
42,356 KB
testcase_02 AC 169 ms
42,448 KB
testcase_03 AC 170 ms
42,440 KB
testcase_04 AC 159 ms
42,456 KB
testcase_05 AC 162 ms
42,376 KB
testcase_06 AC 165 ms
42,316 KB
testcase_07 AC 148 ms
41,784 KB
testcase_08 AC 165 ms
42,312 KB
testcase_09 AC 159 ms
42,444 KB
testcase_10 AC 162 ms
42,280 KB
testcase_11 AC 163 ms
42,220 KB
testcase_12 AC 163 ms
42,392 KB
testcase_13 AC 172 ms
42,360 KB
testcase_14 AC 169 ms
42,504 KB
testcase_15 AC 176 ms
42,392 KB
testcase_16 AC 174 ms
42,596 KB
testcase_17 AC 170 ms
42,272 KB
testcase_18 AC 173 ms
42,168 KB
testcase_19 AC 168 ms
42,320 KB
testcase_20 AC 169 ms
42,392 KB
testcase_21 AC 161 ms
42,488 KB
testcase_22 AC 167 ms
42,260 KB
testcase_23 AC 166 ms
42,420 KB
testcase_24 AC 173 ms
42,276 KB
testcase_25 AC 170 ms
42,560 KB
testcase_26 AC 169 ms
42,496 KB
testcase_27 AC 169 ms
42,348 KB
testcase_28 AC 183 ms
42,464 KB
testcase_29 AC 169 ms
42,412 KB
testcase_30 AC 162 ms
42,288 KB
testcase_31 AC 162 ms
42,448 KB
testcase_32 AC 147 ms
42,084 KB
testcase_33 AC 165 ms
42,480 KB
testcase_34 AC 166 ms
42,124 KB
testcase_35 AC 164 ms
42,224 KB
testcase_36 AC 164 ms
42,524 KB
testcase_37 AC 164 ms
42,288 KB
testcase_38 AC 160 ms
42,392 KB
testcase_39 AC 167 ms
42,296 KB
testcase_40 AC 167 ms
42,384 KB
testcase_41 AC 176 ms
42,364 KB
testcase_42 AC 176 ms
42,488 KB
testcase_43 AC 171 ms
42,220 KB
testcase_44 AC 167 ms
42,392 KB
testcase_45 AC 166 ms
42,228 KB
testcase_46 AC 164 ms
42,560 KB
testcase_47 AC 162 ms
42,196 KB
testcase_48 AC 148 ms
41,648 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.ArrayDeque;
import java.util.Arrays;
import java.util.Scanner;

class Main {

	public static void main(String[] args) {
		new Main().run();
	}
	
	void run() {
		Scanner sc = new Scanner(System.in);
		int D=sc.nextInt();
		char[] cs=("xxxxxxxxxxxxxx"+sc.next()+sc.next()+"xxxxxxxxxxxxxx").toCharArray();
		int[] a=new int[cs.length];
		int p=0;
		for(int i=0;i<cs.length;++i) {
			int j=i;
			while(j+1<cs.length&&cs[i]==cs[j+1])++j;
			a[p++]=j-i+1;
			i=j;
		}
		int ans=0;
		for(int i=0;i<p;++i) {
			if(i%2==0) {
				ans=Math.max(ans, (a[i]<=D&&i>0?a[i-1]:0)+Math.min(a[i],D)+(i+1<a.length?a[i+1]:0));
			}else {
				ans=Math.max(ans, a[i]+(i+1<a.length?(Math.min(a[i+1],D)+(a[i+1]<=D&&i+2<a.length?a[i+2]:0)):0));
			}
		}
		System.out.println(ans);
	}

	void tr(Object... objects) {
		System.out.println(Arrays.deepToString(objects));
	}
}
0