結果

問題 No.204 ゴールデン・ウィーク(2)
ユーザー 37zigen37zigen
提出日時 2020-03-19 01:10:36
言語 Java
(openjdk 23)
結果
AC  
実行時間 169 ms / 1,000 ms
コード長 861 bytes
コンパイル時間 3,025 ms
コンパイル使用メモリ 79,692 KB
実行使用メモリ 42,664 KB
最終ジャッジ日時 2024-12-14 02:53:55
合計ジャッジ時間 12,025 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 167 ms
42,256 KB
testcase_01 AC 164 ms
42,536 KB
testcase_02 AC 158 ms
42,216 KB
testcase_03 AC 151 ms
42,288 KB
testcase_04 AC 162 ms
42,496 KB
testcase_05 AC 155 ms
42,336 KB
testcase_06 AC 159 ms
42,156 KB
testcase_07 AC 156 ms
42,536 KB
testcase_08 AC 158 ms
42,572 KB
testcase_09 AC 163 ms
42,412 KB
testcase_10 AC 159 ms
42,392 KB
testcase_11 AC 161 ms
42,560 KB
testcase_12 AC 166 ms
42,360 KB
testcase_13 AC 163 ms
42,624 KB
testcase_14 AC 163 ms
42,228 KB
testcase_15 AC 166 ms
42,260 KB
testcase_16 AC 169 ms
42,416 KB
testcase_17 AC 162 ms
42,624 KB
testcase_18 AC 169 ms
42,436 KB
testcase_19 AC 160 ms
42,256 KB
testcase_20 AC 160 ms
42,360 KB
testcase_21 AC 162 ms
42,624 KB
testcase_22 AC 158 ms
42,480 KB
testcase_23 AC 157 ms
42,256 KB
testcase_24 AC 154 ms
42,288 KB
testcase_25 AC 153 ms
42,568 KB
testcase_26 AC 159 ms
42,568 KB
testcase_27 AC 157 ms
42,264 KB
testcase_28 AC 159 ms
42,360 KB
testcase_29 AC 163 ms
42,480 KB
testcase_30 AC 157 ms
42,408 KB
testcase_31 AC 164 ms
42,416 KB
testcase_32 AC 162 ms
42,552 KB
testcase_33 AC 162 ms
42,268 KB
testcase_34 AC 160 ms
41,952 KB
testcase_35 AC 157 ms
42,436 KB
testcase_36 AC 141 ms
42,284 KB
testcase_37 AC 150 ms
42,336 KB
testcase_38 AC 154 ms
42,664 KB
testcase_39 AC 152 ms
42,060 KB
testcase_40 AC 160 ms
42,572 KB
testcase_41 AC 158 ms
42,360 KB
testcase_42 AC 161 ms
42,564 KB
testcase_43 AC 158 ms
42,536 KB
testcase_44 AC 159 ms
42,476 KB
testcase_45 AC 161 ms
42,624 KB
testcase_46 AC 159 ms
42,228 KB
testcase_47 AC 156 ms
42,576 KB
testcase_48 AC 160 ms
42,580 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