結果

問題 No.1465 Archaea
ユーザー nephrologistnephrologist
提出日時 2021-04-02 21:46:22
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 388 bytes
コンパイル時間 218 ms
コンパイル使用メモリ 82,532 KB
実行使用メモリ 544,924 KB
最終ジャッジ日時 2024-06-06 06:36:37
合計ジャッジ時間 5,604 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
62,200 KB
testcase_01 AC 45 ms
54,756 KB
testcase_02 AC 92 ms
79,068 KB
testcase_03 AC 44 ms
55,404 KB
testcase_04 AC 45 ms
56,728 KB
testcase_05 WA -
testcase_06 AC 45 ms
54,988 KB
testcase_07 AC 383 ms
151,992 KB
testcase_08 AC 83 ms
77,304 KB
testcase_09 AC 103 ms
78,968 KB
testcase_10 AC 44 ms
56,224 KB
testcase_11 AC 472 ms
188,860 KB
testcase_12 AC 205 ms
99,848 KB
testcase_13 MLE -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
権限があれば一括ダウンロードができます

ソースコード

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 - 3 > 0 and b > 1:
        res |= calc(a - 3, b - 1)
    return res


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