結果

問題 No.1208 anti primenumber game
ユーザー ks2mks2m
提出日時 2020-08-30 15:12:43
言語 Java21
(openjdk 21)
結果
AC  
実行時間 660 ms / 2,000 ms
コード長 1,141 bytes
コンパイル時間 2,887 ms
コンパイル使用メモリ 77,656 KB
実行使用メモリ 90,720 KB
最終ジャッジ日時 2024-11-15 08:41:13
合計ジャッジ時間 16,090 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 54 ms
50,416 KB
testcase_01 AC 55 ms
50,292 KB
testcase_02 AC 55 ms
49,976 KB
testcase_03 AC 54 ms
50,372 KB
testcase_04 AC 54 ms
50,116 KB
testcase_05 AC 54 ms
50,332 KB
testcase_06 AC 54 ms
50,364 KB
testcase_07 AC 55 ms
50,092 KB
testcase_08 AC 56 ms
50,200 KB
testcase_09 AC 54 ms
50,132 KB
testcase_10 AC 54 ms
50,436 KB
testcase_11 AC 55 ms
50,432 KB
testcase_12 AC 56 ms
50,376 KB
testcase_13 AC 54 ms
50,384 KB
testcase_14 AC 55 ms
50,340 KB
testcase_15 AC 261 ms
89,428 KB
testcase_16 AC 277 ms
89,284 KB
testcase_17 AC 260 ms
89,276 KB
testcase_18 AC 268 ms
89,444 KB
testcase_19 AC 265 ms
87,956 KB
testcase_20 AC 264 ms
89,324 KB
testcase_21 AC 264 ms
89,700 KB
testcase_22 AC 271 ms
90,720 KB
testcase_23 AC 267 ms
78,696 KB
testcase_24 AC 660 ms
76,084 KB
testcase_25 AC 367 ms
76,560 KB
testcase_26 AC 369 ms
78,368 KB
testcase_27 AC 376 ms
75,924 KB
testcase_28 AC 367 ms
81,020 KB
testcase_29 AC 372 ms
76,036 KB
testcase_30 AC 266 ms
78,324 KB
testcase_31 AC 261 ms
78,556 KB
testcase_32 AC 264 ms
77,800 KB
testcase_33 AC 252 ms
78,436 KB
testcase_34 AC 261 ms
77,768 KB
testcase_35 AC 266 ms
78,604 KB
testcase_36 AC 240 ms
68,584 KB
testcase_37 AC 270 ms
78,228 KB
testcase_38 AC 347 ms
80,152 KB
testcase_39 AC 360 ms
77,084 KB
testcase_40 AC 361 ms
76,640 KB
testcase_41 AC 284 ms
76,524 KB
testcase_42 AC 309 ms
77,488 KB
testcase_43 AC 291 ms
77,184 KB
testcase_44 AC 282 ms
77,368 KB
testcase_45 AC 281 ms
76,656 KB
testcase_46 AC 256 ms
76,632 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.BufferedReader;
import java.io.InputStreamReader;
import java.util.Arrays;

public class Main {
	static int n;
	static long m;
	static long[] a;
	static long[][] dp;

	public static void main(String[] args) throws Exception {
		BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
		String[] sa = br.readLine().split(" ");
		n = Integer.parseInt(sa[0]);
		m = Long.parseLong(sa[1]);
		sa = br.readLine().split(" ");
		a = new long[n];
		for (int i = 0; i < n; i++) {
			a[i] = Long.parseLong(sa[i]);
		}
		br.close();

		dp = new long[2][n + 1];
		Arrays.fill(dp[0], Long.MIN_VALUE);
		Arrays.fill(dp[1], Long.MIN_VALUE);
		dp[0][n] = 0;
		dp[1][n] = 0;
		if (dfs(0, 0) > 0) {
			System.out.println("First");
		} else {
			System.out.println("Second");
		}
	}

	static long dfs(int o, int x) {
		if (dp[o][x] != Long.MIN_VALUE) {
			return dp[o][x];
		}
		long res = dfs(0, x + 1);
		if (o == 1) {
			return dp[o][x] = 1 - m - res;
		} else {
			long val = a[x] - m - res;
			if (a[x] > 1) {
				long val2 = a[x] - 1 - (1 - m) + res;
				val = Math.max(val, val2);
			}
			return dp[o][x] = val;
		}
	}
}
0