結果

問題 No.361 門松ゲーム2
ユーザー rn4rurn4ru
提出日時 2016-04-18 00:59:31
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 1,032 bytes
コンパイル時間 2,065 ms
コンパイル使用メモリ 78,780 KB
実行使用メモリ 59,028 KB
最終ジャッジ日時 2024-10-04 12:44:44
合計ジャッジ時間 8,270 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 120 ms
41,428 KB
testcase_01 AC 109 ms
41,260 KB
testcase_02 AC 126 ms
41,428 KB
testcase_03 AC 111 ms
41,452 KB
testcase_04 AC 103 ms
41,228 KB
testcase_05 AC 105 ms
40,136 KB
testcase_06 WA -
testcase_07 AC 124 ms
41,416 KB
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 AC 139 ms
41,836 KB
testcase_13 WA -
testcase_14 AC 353 ms
50,280 KB
testcase_15 WA -
testcase_16 AC 261 ms
46,464 KB
testcase_17 WA -
testcase_18 WA -
testcase_19 AC 179 ms
43,664 KB
testcase_20 AC 155 ms
42,476 KB
testcase_21 WA -
testcase_22 AC 586 ms
53,736 KB
testcase_23 WA -
testcase_24 AC 168 ms
43,804 KB
testcase_25 WA -
testcase_26 WA -
testcase_27 AC 415 ms
47,828 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.HashMap;
import java.util.Map;
import java.util.Scanner;

public class Main {
	public static void main(String[] args) {
		Scanner scanner = new Scanner(System.in);
		int L = scanner.nextInt();
		int D = scanner.nextInt();
		System.out.println(new Solver().solve(L, D));
	}
}

class Solver {

	public String solve(int l, int d) {
		if (win(l, d)) {
			return "kado";
		}
		return "matsu";
	}

	Map<Integer, Boolean> map = new HashMap<>();

	private boolean win(int l, final int d) {
		if (map.containsKey(l))
			return map.get(l);
		if (l <= 5) {
			map.put(l, false);
			return false;
		}

		for (int i = 1; i <= l; i++) {
			for (int j = 1; j <= l; j++) {
				int k = l - i - j;
				if (i <= 0 || j <= 0 || k <= 0)
					continue;
				if (i == j || i == k || j == k)
					continue;
				if (Math.max(i, Math.max(j, k)) - Math.min(i, Math.min(j, k)) > d)
					continue;

				if (!win(i, d) & !win(j, d) & !win(k, d)) {
					map.put(l, true);
					return true;
				}
			}
		}
		map.put(l, false);
		return false;
	}

}
0