結果

問題 No.361 門松ゲーム2
ユーザー satama6satama6
提出日時 2022-10-19 02:05:11
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 112 ms / 2,000 ms
コード長 537 bytes
コンパイル時間 317 ms
コンパイル使用メモリ 82,392 KB
実行使用メモリ 67,200 KB
最終ジャッジ日時 2024-06-29 07:30:42
合計ジャッジ時間 2,829 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
52,224 KB
testcase_01 AC 33 ms
52,352 KB
testcase_02 AC 32 ms
51,968 KB
testcase_03 AC 34 ms
51,968 KB
testcase_04 AC 33 ms
52,224 KB
testcase_05 AC 31 ms
51,968 KB
testcase_06 AC 32 ms
52,224 KB
testcase_07 AC 33 ms
51,584 KB
testcase_08 AC 41 ms
61,824 KB
testcase_09 AC 45 ms
61,952 KB
testcase_10 AC 41 ms
61,952 KB
testcase_11 AC 41 ms
59,136 KB
testcase_12 AC 46 ms
61,056 KB
testcase_13 AC 42 ms
61,696 KB
testcase_14 AC 81 ms
66,176 KB
testcase_15 AC 50 ms
63,232 KB
testcase_16 AC 92 ms
66,688 KB
testcase_17 AC 79 ms
66,944 KB
testcase_18 AC 50 ms
64,128 KB
testcase_19 AC 81 ms
66,688 KB
testcase_20 AC 47 ms
63,488 KB
testcase_21 AC 85 ms
66,304 KB
testcase_22 AC 112 ms
65,280 KB
testcase_23 AC 83 ms
66,048 KB
testcase_24 AC 81 ms
66,688 KB
testcase_25 AC 82 ms
67,200 KB
testcase_26 AC 87 ms
67,200 KB
testcase_27 AC 87 ms
67,200 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

L, D = map(int, input().split())

# L1 < L2 < L3, L3 - L1 <= D, L1 + L2 + L3 = L

grundy = [0] * (L + 1)

for l in range(6, L+1):
    tmp = set()
    for l1 in range(1, l//3 + 1):
        for l2 in range(l1 + 1, l):
            l3 = l - l1 - l2
            if l3 <= l2:
                break
            if l3 - l1 > D:
                continue
            tmp.add(grundy[l1] ^ grundy[l2] ^ grundy[l3])
        
    g = 0
    while g in tmp:
        g += 1
    grundy[l] = g

if grundy[L] == 0:
    print('matsu')
else:
    print('kado')
0