結果

問題 No.1465 Archaea
ユーザー NatsubiSoganNatsubiSogan
提出日時 2021-07-17 12:31:57
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 377 ms / 2,000 ms
コード長 396 bytes
コンパイル時間 107 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 61,056 KB
最終ジャッジ日時 2024-07-07 00:15:27
合計ジャッジ時間 3,392 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
10,624 KB
testcase_01 AC 28 ms
10,752 KB
testcase_02 AC 28 ms
10,880 KB
testcase_03 AC 26 ms
10,752 KB
testcase_04 AC 26 ms
10,752 KB
testcase_05 AC 25 ms
10,752 KB
testcase_06 AC 26 ms
10,624 KB
testcase_07 AC 97 ms
22,784 KB
testcase_08 AC 26 ms
10,624 KB
testcase_09 AC 142 ms
29,568 KB
testcase_10 AC 27 ms
10,624 KB
testcase_11 AC 116 ms
26,240 KB
testcase_12 AC 29 ms
11,136 KB
testcase_13 AC 282 ms
49,024 KB
testcase_14 AC 137 ms
27,008 KB
testcase_15 AC 28 ms
11,008 KB
testcase_16 AC 29 ms
11,136 KB
testcase_17 AC 294 ms
50,688 KB
testcase_18 AC 42 ms
13,568 KB
testcase_19 AC 134 ms
28,416 KB
testcase_20 AC 214 ms
40,320 KB
testcase_21 AC 377 ms
61,056 KB
testcase_22 AC 376 ms
60,928 KB
testcase_23 AC 26 ms
10,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import deque


n, k = map(int, input().split())
G = [[] for i in range(2 * n + 100)]
for i in range(1, n + 1):
    G[i].append(2 * i)
    G[i].append(i + 3)
d = [-1] * (2 * n + 100)
d[1] = 0
Q = deque([1])
while Q:
    u = Q.popleft()
    for v in G[u]:
        if d[v] == -1:
            d[v] = d[u] + 1
            Q.append(v)
print("YES" if d[n] != -1 and d[n] <= k else "NO")
0