結果

問題 No.1465 Archaea
ユーザー H20H20
提出日時 2021-04-02 22:06:24
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 358 bytes
コンパイル時間 330 ms
コンパイル使用メモリ 81,992 KB
実行使用メモリ 139,992 KB
最終ジャッジ日時 2024-06-06 06:57:40
合計ジャッジ時間 2,484 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
53,908 KB
testcase_01 AC 39 ms
54,800 KB
testcase_02 AC 39 ms
54,000 KB
testcase_03 WA -
testcase_04 AC 39 ms
53,816 KB
testcase_05 AC 39 ms
54,132 KB
testcase_06 AC 39 ms
54,488 KB
testcase_07 AC 39 ms
55,388 KB
testcase_08 AC 40 ms
54,900 KB
testcase_09 AC 38 ms
54,500 KB
testcase_10 AC 39 ms
54,584 KB
testcase_11 AC 40 ms
55,396 KB
testcase_12 AC 39 ms
55,848 KB
testcase_13 AC 172 ms
128,476 KB
testcase_14 AC 40 ms
55,660 KB
testcase_15 AC 38 ms
53,288 KB
testcase_16 AC 38 ms
54,648 KB
testcase_17 WA -
testcase_18 AC 38 ms
53,616 KB
testcase_19 AC 39 ms
53,816 KB
testcase_20 AC 40 ms
54,344 KB
testcase_21 AC 194 ms
138,796 KB
testcase_22 AC 196 ms
139,992 KB
testcase_23 AC 39 ms
54,068 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
from collections import defaultdict
sys.setrecursionlimit(1000000)
def bfs(n,k):
    if n<=0 or k<0:
        return
    if d[n]==1:
        return
    if n==1:
        print('YES')
        exit()
    d[n]=1
    bfs(n-3,k-1)
    if n%2==0:
        bfs(n//2,k-1)





N,K = map(int,input().split())
d = defaultdict(lambda: 0)

bfs(N,K)
print('NO')

0