結果

問題 No.1465 Archaea
ユーザー O2MTO2MT
提出日時 2021-04-15 22:03:15
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 63 ms / 2,000 ms
コード長 482 bytes
コンパイル時間 149 ms
コンパイル使用メモリ 82,008 KB
実行使用メモリ 74,484 KB
最終ジャッジ日時 2024-07-02 06:17:57
合計ジャッジ時間 2,043 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
54,192 KB
testcase_01 AC 38 ms
54,332 KB
testcase_02 AC 37 ms
53,972 KB
testcase_03 AC 43 ms
54,680 KB
testcase_04 AC 38 ms
54,048 KB
testcase_05 AC 38 ms
54,980 KB
testcase_06 AC 35 ms
54,712 KB
testcase_07 AC 48 ms
65,708 KB
testcase_08 AC 36 ms
53,684 KB
testcase_09 AC 54 ms
68,448 KB
testcase_10 AC 35 ms
54,656 KB
testcase_11 AC 54 ms
68,452 KB
testcase_12 AC 38 ms
61,068 KB
testcase_13 AC 59 ms
72,460 KB
testcase_14 AC 51 ms
67,976 KB
testcase_15 AC 38 ms
53,552 KB
testcase_16 AC 38 ms
54,012 KB
testcase_17 AC 63 ms
72,320 KB
testcase_18 AC 49 ms
62,592 KB
testcase_19 AC 38 ms
54,380 KB
testcase_20 AC 53 ms
70,680 KB
testcase_21 AC 59 ms
74,484 KB
testcase_22 AC 58 ms
72,136 KB
testcase_23 AC 35 ms
53,240 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import deque

N,K = map(int,input().split())
que = deque([(1, 0)]) # (細胞の数, 捜査回数)
visited = [True]*(N+1)
while que:
    num, count = que.popleft()
    if count > K:
        continue
    if num == N:
        print('YES')
        exit()
    a, b = num*2, num+3
    if a <= N and visited[a]:
        que.append((a,count+1))
        visited[a] = False
    if b <= N and visited[b]:
        que.append((b,count+1))
        visited[b] = False

print('NO')
0