結果

問題 No.361 門松ゲーム2
ユーザー i_takui_taku
提出日時 2024-09-03 13:53:03
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 288 ms / 2,000 ms
コード長 404 bytes
コンパイル時間 476 ms
コンパイル使用メモリ 82,568 KB
実行使用メモリ 76,744 KB
最終ジャッジ日時 2024-09-03 13:53:07
合計ジャッジ時間 3,323 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
52,808 KB
testcase_01 AC 33 ms
52,436 KB
testcase_02 AC 34 ms
51,944 KB
testcase_03 AC 33 ms
52,952 KB
testcase_04 AC 35 ms
52,268 KB
testcase_05 AC 34 ms
52,504 KB
testcase_06 AC 34 ms
52,188 KB
testcase_07 AC 35 ms
52,252 KB
testcase_08 AC 45 ms
63,500 KB
testcase_09 AC 44 ms
61,824 KB
testcase_10 AC 42 ms
60,676 KB
testcase_11 AC 43 ms
60,992 KB
testcase_12 AC 49 ms
62,332 KB
testcase_13 AC 43 ms
61,808 KB
testcase_14 AC 142 ms
76,096 KB
testcase_15 AC 49 ms
64,000 KB
testcase_16 AC 86 ms
70,632 KB
testcase_17 AC 61 ms
67,196 KB
testcase_18 AC 53 ms
65,792 KB
testcase_19 AC 57 ms
67,464 KB
testcase_20 AC 48 ms
64,232 KB
testcase_21 AC 86 ms
71,256 KB
testcase_22 AC 288 ms
76,744 KB
testcase_23 AC 51 ms
63,564 KB
testcase_24 AC 54 ms
64,488 KB
testcase_25 AC 54 ms
64,396 KB
testcase_26 AC 69 ms
67,812 KB
testcase_27 AC 74 ms
70,140 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def dfs(n):
    if n in dp:
        return dp[n]
    S = set(range(n + 1))
    for i in range(1, n + 1):
        for j in range(i + 1, n + 1):
            k = n - i - j
            if not j < k or k - i > D:
                continue
            S.discard(dfs(i) ^ dfs(j) ^ dfs(k))
    dp[n] = min(S)
    return dp[n]

L, D = map(int, input().split())
dp = dict()
print('kado' if dfs(L) > 0 else 'matsu')
0