結果

問題 No.1465 Archaea
ユーザー aaaaaaaaaa2230aaaaaaaaaa2230
提出日時 2021-04-02 21:54:42
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 418 bytes
コンパイル時間 270 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 482,244 KB
最終ジャッジ日時 2024-06-06 06:43:53
合計ジャッジ時間 5,244 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
57,216 KB
testcase_01 AC 38 ms
51,456 KB
testcase_02 AC 69 ms
77,440 KB
testcase_03 AC 37 ms
51,968 KB
testcase_04 AC 40 ms
51,840 KB
testcase_05 AC 37 ms
51,584 KB
testcase_06 AC 37 ms
51,712 KB
testcase_07 AC 264 ms
117,908 KB
testcase_08 AC 61 ms
66,816 KB
testcase_09 AC 73 ms
74,880 KB
testcase_10 AC 38 ms
51,712 KB
testcase_11 AC 291 ms
146,408 KB
testcase_12 AC 124 ms
88,632 KB
testcase_13 TLE -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

n,k = map(int,input().split())
dic = {}
def dfs(x,left):
    if (x,left) in dic:
        return dic[(x,left)]
    #print(x,left)
    if x < 1:
        return 0
    if x == 1:
        return 1
    if left == 0 and x != 1:
        return 0

    check = 0
    if x%2 == 0:
        check |= dfs(x//2,left-1)
    check |= dfs(x-3,left-1)

    dic[(x,left)] = check

    return check
print("YES" if dfs(n,k) else "NO")

    
0