結果

問題 No.1465 Archaea
ユーザー aaaaaaaaaa2230aaaaaaaaaa2230
提出日時 2021-04-02 21:55:31
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
RE  
実行時間 -
コード長 418 bytes
コンパイル時間 415 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 81,120 KB
最終ジャッジ日時 2024-06-06 06:46:07
合計ジャッジ時間 3,538 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,752 KB
testcase_01 AC 31 ms
10,880 KB
testcase_02 AC 42 ms
12,672 KB
testcase_03 AC 28 ms
10,624 KB
testcase_04 AC 27 ms
10,624 KB
testcase_05 AC 27 ms
10,624 KB
testcase_06 AC 30 ms
10,752 KB
testcase_07 AC 325 ms
44,404 KB
testcase_08 AC 32 ms
11,520 KB
testcase_09 AC 36 ms
11,776 KB
testcase_10 AC 28 ms
10,624 KB
testcase_11 AC 375 ms
51,820 KB
testcase_12 AC 123 ms
27,620 KB
testcase_13 RE -
testcase_14 AC 60 ms
15,536 KB
testcase_15 AC 27 ms
10,624 KB
testcase_16 AC 28 ms
10,624 KB
testcase_17 AC 29 ms
10,880 KB
testcase_18 AC 28 ms
10,752 KB
testcase_19 AC 27 ms
10,880 KB
testcase_20 AC 27 ms
10,752 KB
testcase_21 RE -
testcase_22 RE -
testcase_23 AC 28 ms
10,624 KB
権限があれば一括ダウンロードができます

ソースコード

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