結果

問題 No.361 門松ゲーム2
ユーザー vwxyzvwxyz
提出日時 2022-08-10 04:42:23
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 144 ms / 2,000 ms
コード長 448 bytes
コンパイル時間 382 ms
コンパイル使用メモリ 82,008 KB
実行使用メモリ 73,088 KB
最終ジャッジ日時 2024-09-20 09:06:42
合計ジャッジ時間 3,009 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
52,096 KB
testcase_01 AC 36 ms
51,968 KB
testcase_02 AC 35 ms
52,096 KB
testcase_03 AC 35 ms
51,840 KB
testcase_04 AC 34 ms
52,096 KB
testcase_05 AC 35 ms
51,968 KB
testcase_06 AC 35 ms
51,840 KB
testcase_07 AC 37 ms
52,096 KB
testcase_08 AC 46 ms
62,208 KB
testcase_09 AC 47 ms
62,720 KB
testcase_10 AC 46 ms
62,080 KB
testcase_11 AC 47 ms
59,264 KB
testcase_12 AC 47 ms
62,592 KB
testcase_13 AC 46 ms
62,848 KB
testcase_14 AC 98 ms
70,016 KB
testcase_15 AC 54 ms
64,000 KB
testcase_16 AC 105 ms
71,936 KB
testcase_17 AC 95 ms
71,168 KB
testcase_18 AC 57 ms
64,512 KB
testcase_19 AC 95 ms
71,552 KB
testcase_20 AC 52 ms
63,488 KB
testcase_21 AC 104 ms
71,424 KB
testcase_22 AC 144 ms
73,088 KB
testcase_23 AC 92 ms
70,784 KB
testcase_24 AC 94 ms
71,040 KB
testcase_25 AC 101 ms
72,320 KB
testcase_26 AC 103 ms
72,960 KB
testcase_27 AC 103 ms
72,576 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
readline=sys.stdin.readline

L,D=map(int,readline().split())
grundy=[None]*(L+1)
grundy[0]=0
grundy[1]=0
for l in range(2,L+1):
    se=set()
    for L1 in range(1,l-1):
        for L2 in range(L1+1,l-L1):
            L3=l-L1-L2
            if L2<L3 and L3-L1<=D:
                se.add(grundy[L1]^grundy[L2]^grundy[L3])
    x=0
    while x in se:
        x+=1
    grundy[l]=x
if grundy[L]:
    ans="kado"
else:
    ans="matsu"
print(ans)
0