結果

問題 No.1465 Archaea
ユーザー wolgnikwolgnik
提出日時 2020-07-28 13:41:28
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 213 ms / 2,000 ms
コード長 446 bytes
コンパイル時間 104 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 21,924 KB
最終ジャッジ日時 2024-06-06 10:23:49
合計ジャッジ時間 2,598 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 25 ms
10,752 KB
testcase_01 AC 25 ms
10,752 KB
testcase_02 AC 26 ms
10,624 KB
testcase_03 AC 28 ms
10,880 KB
testcase_04 AC 29 ms
10,624 KB
testcase_05 AC 28 ms
10,624 KB
testcase_06 AC 26 ms
10,752 KB
testcase_07 AC 69 ms
13,472 KB
testcase_08 AC 26 ms
10,752 KB
testcase_09 AC 94 ms
16,096 KB
testcase_10 AC 26 ms
10,624 KB
testcase_11 AC 89 ms
13,732 KB
testcase_12 AC 29 ms
10,752 KB
testcase_13 AC 171 ms
21,388 KB
testcase_14 AC 86 ms
13,352 KB
testcase_15 AC 28 ms
10,752 KB
testcase_16 AC 29 ms
10,752 KB
testcase_17 AC 174 ms
21,860 KB
testcase_18 AC 36 ms
11,392 KB
testcase_19 AC 88 ms
16,152 KB
testcase_20 AC 131 ms
16,436 KB
testcase_21 AC 213 ms
21,888 KB
testcase_22 AC 212 ms
21,924 KB
testcase_23 AC 26 ms
10,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
from collections import deque as dq
from collections import defaultdict as dd
input = sys.stdin.readline
N, K  = map(int, input().split())
Q = dq([1])
d = dd(lambda: 10 ** 10)
d[1] = 0
while len(Q):
  x = Q.popleft()
  if x + 3 <= N and (d[x + 3] > d[x] + 1):
    d[x + 3] = d[x] + 1
    Q.append(x + 3)
  if x * 2 <= N and (d[x * 2] > d[x] + 1):
    d[x * 2] = d[x] + 1
    Q.append(x * 2)
if d[N] <= K: print("YES")
else: print("NO")
0