結果

問題 No.361 門松ゲーム2
ユーザー tcltktcltk
提出日時 2021-06-06 07:14:19
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 370 ms / 2,000 ms
コード長 853 bytes
コンパイル時間 183 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 89,728 KB
最終ジャッジ日時 2024-11-22 11:28:37
合計ジャッジ時間 6,223 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 142 ms
86,784 KB
testcase_01 AC 143 ms
86,784 KB
testcase_02 AC 145 ms
86,272 KB
testcase_03 AC 142 ms
86,400 KB
testcase_04 AC 142 ms
86,272 KB
testcase_05 AC 143 ms
86,528 KB
testcase_06 AC 149 ms
86,272 KB
testcase_07 AC 145 ms
86,528 KB
testcase_08 AC 160 ms
89,216 KB
testcase_09 AC 160 ms
88,960 KB
testcase_10 AC 145 ms
87,040 KB
testcase_11 AC 144 ms
86,656 KB
testcase_12 AC 157 ms
88,832 KB
testcase_13 AC 159 ms
89,600 KB
testcase_14 AC 234 ms
89,600 KB
testcase_15 AC 164 ms
88,960 KB
testcase_16 AC 185 ms
89,088 KB
testcase_17 AC 173 ms
89,344 KB
testcase_18 AC 169 ms
89,472 KB
testcase_19 AC 170 ms
89,088 KB
testcase_20 AC 166 ms
89,216 KB
testcase_21 AC 190 ms
89,728 KB
testcase_22 AC 370 ms
89,472 KB
testcase_23 AC 160 ms
89,344 KB
testcase_24 AC 161 ms
89,088 KB
testcase_25 AC 166 ms
89,344 KB
testcase_26 AC 175 ms
89,088 KB
testcase_27 AC 175 ms
89,344 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#!/usr/bin/env python3
# from typing import *

import sys
import io
import math
import collections
import decimal
import itertools
import bisect
import heapq


def input():
    return sys.stdin.readline()[:-1]


# sys.setrecursionlimit(1000000)

# _INPUT = """# paste here...
# """
# sys.stdin = io.StringIO(_INPUT)

def get_grundy(L):
    if L < 6:
        return 0
    if L in Memo:
        return Memo[L]
    
    s = set()
    for a in range(1, L//3-1 + 1):
        for b in range(a+1, (L-a-1)//2 + 1):
            c = L - a - b
            if c - a <= D:
                s.add(get_grundy(a) ^ get_grundy(b) ^ get_grundy(c))
    mex = 0
    while mex in s:
        mex += 1
    Memo[L] = mex
    return mex

Memo = collections.defaultdict(int)
L, D = map(int, input().split())
g = get_grundy(L)
if g == 0:
    print('matsu')
else:
    print('kado')
0