結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
56,516 KB
testcase_01 AC 43 ms
56,356 KB
testcase_02 AC 43 ms
55,896 KB
testcase_03 WA -
testcase_04 AC 43 ms
56,260 KB
testcase_05 WA -
testcase_06 AC 40 ms
54,772 KB
testcase_07 AC 45 ms
55,708 KB
testcase_08 AC 43 ms
55,380 KB
testcase_09 AC 43 ms
55,052 KB
testcase_10 AC 42 ms
55,628 KB
testcase_11 AC 43 ms
55,372 KB
testcase_12 AC 43 ms
56,276 KB
testcase_13 AC 42 ms
56,524 KB
testcase_14 AC 42 ms
55,372 KB
testcase_15 AC 39 ms
55,372 KB
testcase_16 AC 41 ms
55,704 KB
testcase_17 AC 41 ms
55,368 KB
testcase_18 AC 41 ms
56,572 KB
testcase_19 AC 41 ms
55,568 KB
testcase_20 AC 40 ms
55,368 KB
testcase_21 AC 41 ms
55,192 KB
testcase_22 AC 45 ms
55,896 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:
            res |= calc((a - 3) // 2, b - 2)

    return res


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