結果

問題 No.361 門松ゲーム2
ユーザー brthyyjpbrthyyjp
提出日時 2021-09-17 15:21:06
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 911 ms / 2,000 ms
コード長 690 bytes
コンパイル時間 274 ms
コンパイル使用メモリ 82,244 KB
実行使用メモリ 76,908 KB
最終ジャッジ日時 2024-09-27 12:22:46
合計ジャッジ時間 5,045 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,332 KB
testcase_01 AC 39 ms
52,300 KB
testcase_02 AC 39 ms
53,956 KB
testcase_03 AC 39 ms
53,620 KB
testcase_04 AC 38 ms
53,344 KB
testcase_05 AC 38 ms
53,356 KB
testcase_06 AC 38 ms
52,812 KB
testcase_07 AC 42 ms
59,908 KB
testcase_08 AC 86 ms
76,140 KB
testcase_09 AC 90 ms
76,248 KB
testcase_10 AC 72 ms
73,780 KB
testcase_11 AC 59 ms
69,920 KB
testcase_12 AC 67 ms
73,304 KB
testcase_13 AC 83 ms
76,016 KB
testcase_14 AC 368 ms
76,152 KB
testcase_15 AC 94 ms
76,020 KB
testcase_16 AC 199 ms
76,388 KB
testcase_17 AC 134 ms
75,944 KB
testcase_18 AC 110 ms
76,288 KB
testcase_19 AC 120 ms
76,280 KB
testcase_20 AC 94 ms
75,948 KB
testcase_21 AC 204 ms
76,000 KB
testcase_22 AC 911 ms
76,908 KB
testcase_23 AC 101 ms
76,444 KB
testcase_24 AC 100 ms
76,232 KB
testcase_25 AC 110 ms
75,692 KB
testcase_26 AC 148 ms
76,252 KB
testcase_27 AC 160 ms
76,168 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

l, d = map(int, input().split())

N = 550
grundy = [-1]*N
grundy[1] = 0
grundy[2] = 0
def rec(x):
    if grundy[x] != -1:
        return grundy[x]
    S = set()
    for l1 in range(1, x-1):
        for l2 in range(1, x-1):
            l3 = x-l1-l2
            if l3 <= 0:
                continue
            if l1 == l2 or l2 == l3 or l3 == l1:
                continue
            if max(l1, l2, l3)-min(l1, l2, l3) <= d:
                g = rec(l1)^rec(l2)^rec(l3)
                S.add(g)
    g = 0
    while True:
        if g not in S:
            break
        else:
            g += 1
    grundy[x] = g
    return g

g = rec(l)
if g == 0:
    print('matsu')
else:
    print('kado')
0