結果

問題 No.1465 Archaea
ユーザー nephrologistnephrologist
提出日時 2021-04-02 21:46:22
言語 PyPy3
(7.3.15)
結果
MLE  
実行時間 -
コード長 388 bytes
コンパイル時間 147 ms
コンパイル使用メモリ 82,572 KB
実行使用メモリ 602,936 KB
最終ジャッジ日時 2024-12-23 18:58:39
合計ジャッジ時間 12,730 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 52 ms
59,648 KB
testcase_01 MLE -
testcase_02 AC 93 ms
84,480 KB
testcase_03 MLE -
testcase_04 AC 48 ms
60,032 KB
testcase_05 WA -
testcase_06 AC 46 ms
54,784 KB
testcase_07 AC 401 ms
151,840 KB
testcase_08 AC 89 ms
77,184 KB
testcase_09 AC 109 ms
78,868 KB
testcase_10 AC 48 ms
54,656 KB
testcase_11 AC 474 ms
188,976 KB
testcase_12 AC 214 ms
99,984 KB
testcase_13 TLE -
testcase_14 AC 141 ms
85,480 KB
testcase_15 AC 50 ms
54,912 KB
testcase_16 AC 49 ms
55,424 KB
testcase_17 AC 67 ms
69,120 KB
testcase_18 AC 48 ms
55,040 KB
testcase_19 AC 47 ms
55,296 KB
testcase_20 AC 52 ms
61,952 KB
testcase_21 TLE -
testcase_22 TLE -
testcase_23 MLE -
権限があれば一括ダウンロードができます

ソースコード

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