結果

問題 No.726 Tree Game
ユーザー 37zigen37zigen
提出日時 2018-08-24 21:41:10
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 1,026 bytes
コンパイル時間 1,969 ms
コンパイル使用メモリ 77,456 KB
実行使用メモリ 48,992 KB
最終ジャッジ日時 2024-06-23 06:56:01
合計ジャッジ時間 6,524 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 142 ms
48,796 KB
testcase_01 AC 143 ms
48,992 KB
testcase_02 AC 137 ms
48,264 KB
testcase_03 WA -
testcase_04 AC 138 ms
48,180 KB
testcase_05 AC 135 ms
48,464 KB
testcase_06 AC 140 ms
48,404 KB
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 AC 137 ms
48,596 KB
testcase_11 AC 137 ms
48,232 KB
testcase_12 AC 138 ms
48,396 KB
testcase_13 WA -
testcase_14 AC 144 ms
48,256 KB
testcase_15 AC 139 ms
48,288 KB
testcase_16 AC 144 ms
48,696 KB
testcase_17 AC 145 ms
48,476 KB
testcase_18 WA -
testcase_19 AC 147 ms
48,416 KB
testcase_20 AC 147 ms
48,584 KB
testcase_21 AC 146 ms
48,460 KB
testcase_22 AC 155 ms
48,184 KB
testcase_23 AC 153 ms
48,832 KB
testcase_24 AC 153 ms
48,520 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

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

	void run() {
		Scanner sc = new Scanner(System.in);
		X = sc.nextLong();
		Y = sc.nextLong();
		System.out.println(dfs(0, 0) == 1 ? "First" : "Second");
	}

	long X, Y;

	// memo[i][j]=1 勝ち
	// memo[i][j]=0 負け

	int dfs(int dx, int dy) {
		if (memo[dx][dy] != -1)
			return memo[dx][dy];
		if (isPrime(X + dx) || isPrime(Y + dy))
			return memo[dx][dy] = 1;
		if (dfs(dx + 1, dy) == 0 || dfs(dx, dy + 1) == 0) {
			return memo[dx][dy] = 1;
		} else {
			return memo[dx][dy] = 0;
		}
	}

	int[][] memo = new int[1000][1000];
	{
		for (int i = 0; i < memo.length; ++i)
			for (int j = 0; j < memo[i].length; ++j)
				memo[i][j] = -1;
	}

	boolean isPrime(long a) {
		if (a == 1)
			return false;
		for (long i = 2; i * i <= a; ++i) {
			if (a % i == 0)
				return false;
		}
		return true;
	}

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