結果

問題 No.361 門松ゲーム2
ユーザー はむ吉🐹はむ吉🐹
提出日時 2016-05-15 19:27:56
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 227 ms / 2,000 ms
コード長 748 bytes
コンパイル時間 300 ms
コンパイル使用メモリ 82,560 KB
実行使用メモリ 76,544 KB
最終ジャッジ日時 2024-10-06 03:29:01
合計ジャッジ時間 3,715 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,268 KB
testcase_01 AC 38 ms
52,352 KB
testcase_02 AC 37 ms
52,992 KB
testcase_03 AC 38 ms
52,480 KB
testcase_04 AC 38 ms
52,224 KB
testcase_05 AC 36 ms
52,352 KB
testcase_06 AC 38 ms
51,968 KB
testcase_07 AC 37 ms
52,352 KB
testcase_08 AC 48 ms
62,984 KB
testcase_09 AC 49 ms
63,744 KB
testcase_10 AC 53 ms
62,976 KB
testcase_11 AC 45 ms
61,568 KB
testcase_12 AC 49 ms
63,616 KB
testcase_13 AC 52 ms
63,488 KB
testcase_14 AC 146 ms
75,904 KB
testcase_15 AC 65 ms
76,160 KB
testcase_16 AC 176 ms
76,312 KB
testcase_17 AC 160 ms
75,876 KB
testcase_18 AC 71 ms
75,648 KB
testcase_19 AC 162 ms
76,032 KB
testcase_20 AC 56 ms
69,888 KB
testcase_21 AC 166 ms
76,088 KB
testcase_22 AC 227 ms
76,416 KB
testcase_23 AC 163 ms
76,544 KB
testcase_24 AC 174 ms
75,956 KB
testcase_25 AC 183 ms
75,900 KB
testcase_26 AC 187 ms
76,032 KB
testcase_27 AC 190 ms
76,032 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#!/usr/bin/env pypy3

import array


def mex(s):
    m = 0
    while m in s:
        m += 1
    return m


def can_kado_win(l, d):
    gs = array.array("I", (0 for _ in range(l + 1)))
    for i in range(1, l + 1):
        next_gs = set()
        for l1 in range(3, i - 2):
            for l2 in range(2, i - l1):
                if l1 <= l2:
                    continue
                l3 = i - l1 - l2
                if l2 <= l3:
                    continue
                if l1 - l3 <= d:
                    next_gs.add(gs[l1] ^ gs[l2] ^ gs[l3])
        gs[i] = mex(next_gs)
    return gs[l] != 0


def main():
    l, d = map(int, input().split())
    print("kado" if can_kado_win(l, d) else "matsu")


if __name__ == '__main__':
    main()
0