結果

問題 No.1465 Archaea
ユーザー AEnAEn
提出日時 2022-06-15 00:40:12
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 81 ms / 2,000 ms
コード長 438 bytes
コンパイル時間 228 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 74,880 KB
最終ジャッジ日時 2024-10-03 03:46:24
合計ジャッジ時間 2,569 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
53,504 KB
testcase_01 AC 41 ms
53,376 KB
testcase_02 AC 42 ms
53,504 KB
testcase_03 AC 43 ms
52,992 KB
testcase_04 AC 43 ms
53,248 KB
testcase_05 AC 43 ms
53,376 KB
testcase_06 AC 46 ms
53,248 KB
testcase_07 AC 65 ms
66,432 KB
testcase_08 AC 44 ms
53,376 KB
testcase_09 AC 70 ms
68,352 KB
testcase_10 AC 45 ms
53,248 KB
testcase_11 AC 65 ms
67,200 KB
testcase_12 AC 49 ms
60,288 KB
testcase_13 AC 78 ms
72,704 KB
testcase_14 AC 67 ms
67,456 KB
testcase_15 AC 44 ms
53,376 KB
testcase_16 AC 46 ms
53,632 KB
testcase_17 AC 80 ms
74,112 KB
testcase_18 AC 47 ms
59,904 KB
testcase_19 AC 43 ms
53,760 KB
testcase_20 AC 66 ms
67,968 KB
testcase_21 AC 79 ms
74,880 KB
testcase_22 AC 81 ms
74,624 KB
testcase_23 AC 44 ms
52,864 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import deque

N, K = map(int, input().split())
is_ok = [False]*(N+1)
is_ok[1] = True
d = deque()
d.append((1, 0))
while d:
    p, cnt = d.popleft()
    if cnt>=K:
        continue
    if p*2<=N and is_ok[p*2]==False:
        is_ok[p*2] = True
        d.append((p*2, cnt+1))
    if p+3<=N and is_ok[p+3]==False:
        is_ok[p+3] = True
        d.append((p+3, cnt+1))
if is_ok[-1]:
    print('YES')
else:
    print('NO')
0