結果

問題 No.361 門松ゲーム2
ユーザー rlangevinrlangevin
提出日時 2023-08-31 08:54:43
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 193 ms / 2,000 ms
コード長 410 bytes
コンパイル時間 335 ms
コンパイル使用メモリ 82,252 KB
実行使用メモリ 72,320 KB
最終ジャッジ日時 2024-06-11 01:19:49
合計ジャッジ時間 4,051 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
51,456 KB
testcase_01 AC 39 ms
52,352 KB
testcase_02 AC 38 ms
52,096 KB
testcase_03 AC 38 ms
52,352 KB
testcase_04 AC 39 ms
51,968 KB
testcase_05 AC 44 ms
51,840 KB
testcase_06 AC 41 ms
52,480 KB
testcase_07 AC 40 ms
52,096 KB
testcase_08 AC 50 ms
61,440 KB
testcase_09 AC 49 ms
61,056 KB
testcase_10 AC 48 ms
61,184 KB
testcase_11 AC 49 ms
60,288 KB
testcase_12 AC 51 ms
61,440 KB
testcase_13 AC 50 ms
61,568 KB
testcase_14 AC 126 ms
68,736 KB
testcase_15 AC 58 ms
62,976 KB
testcase_16 AC 139 ms
70,944 KB
testcase_17 AC 121 ms
70,400 KB
testcase_18 AC 62 ms
63,104 KB
testcase_19 AC 128 ms
70,400 KB
testcase_20 AC 56 ms
62,644 KB
testcase_21 AC 135 ms
70,016 KB
testcase_22 AC 193 ms
72,320 KB
testcase_23 AC 150 ms
69,760 KB
testcase_24 AC 134 ms
69,760 KB
testcase_25 AC 140 ms
70,528 KB
testcase_26 AC 143 ms
71,040 KB
testcase_27 AC 147 ms
71,808 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

L, D = map(int, input().split())
dp = [0] * (L + 1)
for n in range(6, L + 1):
    S = set()
    for a in range(1, n):
        for b in range(a + 1, n):
            c = n - a - b
            if c <= b or c > a + D:
                continue
            S.add(dp[a]^dp[b]^dp[c])

    for i in range(L + 2):
        if i not in S:
            dp[n] = i
            break

print("kado") if dp[L] else print("matsu")
0