結果

問題 No.204 ゴールデン・ウィーク(2)
ユーザー fujisufujisu
提出日時 2015-05-09 19:15:45
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 2,888 bytes
コンパイル時間 2,829 ms
コンパイル使用メモリ 81,652 KB
実行使用メモリ 40,020 KB
最終ジャッジ日時 2024-04-21 14:04:44
合計ジャッジ時間 9,352 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 95 ms
39,616 KB
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 AC 94 ms
38,528 KB
testcase_05 AC 99 ms
39,636 KB
testcase_06 AC 103 ms
39,804 KB
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 AC 103 ms
39,744 KB
testcase_26 AC 94 ms
39,764 KB
testcase_27 AC 95 ms
39,572 KB
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 AC 98 ms
39,920 KB
testcase_32 WA -
testcase_33 WA -
testcase_34 AC 93 ms
37,820 KB
testcase_35 AC 92 ms
38,340 KB
testcase_36 AC 97 ms
39,608 KB
testcase_37 WA -
testcase_38 WA -
testcase_39 WA -
testcase_40 AC 95 ms
39,656 KB
testcase_41 AC 92 ms
37,956 KB
testcase_42 WA -
testcase_43 AC 94 ms
39,828 KB
testcase_44 AC 95 ms
37,948 KB
testcase_45 AC 94 ms
38,108 KB
testcase_46 WA -
testcase_47 WA -
testcase_48 AC 96 ms
39,840 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.IOException;
import java.util.InputMismatchException;
import java.util.LinkedList;
import java.util.List;

public class Main {
	void run() {
		MyScanner sc = new MyScanner();

		int d = sc.nextInt();
		char[] c = (sc.next() + sc.next() + '@').toCharArray();

		int cnt = 1;
		List<Integer> list = new LinkedList<Integer>();
		for (int i = 1; i < c.length; i++) {
			if (c[i] != c[i - 1]) {
				if (c[i - 1] == 'o') {
					list.add(cnt);
				} else {
					list.add(-cnt);
				}
				cnt = 0;
			}
			cnt++;
		}
		Integer[] a = list.toArray(new Integer[0]);

		int max = d;
		for (int i = 0; i < a.length; i++) {
			if (a[i] < 0 && -a[i] <= d) {
				int tmp1 = 0, tmp2 = 0;
				if (0 <= i - 1) {
					tmp1 = a[i - 1];
				}
				if (i + 1 < a.length) {
					tmp2 = a[i + 1];
				}
				max = Math.max(max, tmp1 + -a[i] + tmp2);
			}
			if (a[i] > 0) {
				max = Math.max(max, a[i]);
			}
		}
		System.out.println(max);
	}

	public static void main(String[] args) {
		new Main().run();
	}

	public void mapDebug(int[][] a) {
		System.out.println("--------map display---------");
		for (int i = 0; i < a.length; i++) {
			for (int j = 0; j < a[i].length; j++) {
				System.out.printf("%3d ", a[i][j]);
			}
			System.out.println();
		}
		System.out.println("----------------------------" + '\n');
	}

	class MyScanner {
		int read() {
			try {
				return System.in.read();
			} catch (IOException e) {
				throw new InputMismatchException();
			}
		}

		boolean isSpaceChar(int c) {
			return c == ' ' || c == '\n' || c == '\r' || c == '\t' || c == -1;
		}

		boolean isEndline(int c) {
			return c == '\n' || c == '\r' || c == -1;
		}

		int nextInt() {
			return Integer.parseInt(next());
		}

		int[] nextIntArray(int n) {
			int[] array = new int[n];
			for (int i = 0; i < n; i++)
				array[i] = nextInt();
			return array;
		}

		long nextLong() {
			return Long.parseLong(next());
		}

		long[] nextLongArray(int n) {
			long[] array = new long[n];
			for (int i = 0; i < n; i++)
				array[i] = nextLong();
			return array;
		}

		double nextDouble() {
			return Double.parseDouble(next());
		}

		double[] nextDoubleArray(int n) {
			double[] array = new double[n];
			for (int i = 0; i < n; i++)
				array[i] = nextDouble();
			return array;
		}

		String next() {
			int c = read();
			while (isSpaceChar(c))
				c = read();
			StringBuilder res = new StringBuilder();
			do {
				res.appendCodePoint(c);
				c = read();
			} while (!isSpaceChar(c));
			return res.toString();
		}

		String[] nextStringArray(int n) {
			String[] array = new String[n];
			for (int i = 0; i < n; i++)
				array[i] = next();

			return array;
		}

		String nextLine() {
			int c = read();
			while (isEndline(c))
				c = read();
			StringBuilder res = new StringBuilder();
			do {
				res.appendCodePoint(c);
				c = read();
			} while (!isEndline(c));
			return res.toString();
		}
	}
}
0