結果

問題 No.1465 Archaea
ユーザー nephrologistnephrologist
提出日時 2021-04-02 21:59:47
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 478 bytes
コンパイル時間 375 ms
コンパイル使用メモリ 82,272 KB
実行使用メモリ 57,184 KB
最終ジャッジ日時 2024-06-06 06:49:16
合計ジャッジ時間 1,893 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
55,876 KB
testcase_01 AC 44 ms
55,108 KB
testcase_02 AC 41 ms
55,396 KB
testcase_03 WA -
testcase_04 AC 42 ms
56,092 KB
testcase_05 WA -
testcase_06 AC 41 ms
55,824 KB
testcase_07 AC 41 ms
55,412 KB
testcase_08 AC 42 ms
55,500 KB
testcase_09 AC 40 ms
55,592 KB
testcase_10 AC 41 ms
55,128 KB
testcase_11 AC 40 ms
55,120 KB
testcase_12 AC 40 ms
55,756 KB
testcase_13 AC 42 ms
55,288 KB
testcase_14 AC 41 ms
55,588 KB
testcase_15 AC 43 ms
56,376 KB
testcase_16 AC 44 ms
56,680 KB
testcase_17 AC 43 ms
55,668 KB
testcase_18 AC 43 ms
56,372 KB
testcase_19 AC 44 ms
55,260 KB
testcase_20 AC 43 ms
54,532 KB
testcase_21 AC 43 ms
55,908 KB
testcase_22 AC 42 ms
55,252 KB
testcase_23 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

from functools import lru_cache

n, k = map(int, input().split())


@lru_cache(None)
def calc(a, b):
    if b == 0:
        return False
    if a == 1:
        return True

    res = False

    if a % 2 == 0 and b > 1:
        res |= calc(a // 2, b - 1)
    if a % 2 == 1:
        if a == 3:
            return False
        else:
            if b - 2 > 0:
                res |= calc((a - 3) // 2, b - 2)

    return res


if calc(n, k):
    print("YES")
else:
    print("NO")
0