結果

問題 No.1465 Archaea
ユーザー lloyzlloyz
提出日時 2022-10-30 02:02:42
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 78 ms / 2,000 ms
コード長 397 bytes
コンパイル時間 281 ms
コンパイル使用メモリ 82,248 KB
実行使用メモリ 97,920 KB
最終ジャッジ日時 2024-07-06 21:46:46
合計ジャッジ時間 2,126 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
52,732 KB
testcase_01 AC 33 ms
53,128 KB
testcase_02 AC 34 ms
52,748 KB
testcase_03 AC 33 ms
52,196 KB
testcase_04 AC 33 ms
53,308 KB
testcase_05 AC 33 ms
52,096 KB
testcase_06 AC 33 ms
53,328 KB
testcase_07 AC 47 ms
70,140 KB
testcase_08 AC 36 ms
63,076 KB
testcase_09 AC 55 ms
73,800 KB
testcase_10 AC 34 ms
52,320 KB
testcase_11 AC 52 ms
71,844 KB
testcase_12 AC 41 ms
63,156 KB
testcase_13 AC 72 ms
90,108 KB
testcase_14 AC 52 ms
72,180 KB
testcase_15 AC 34 ms
52,616 KB
testcase_16 AC 34 ms
53,504 KB
testcase_17 AC 61 ms
85,872 KB
testcase_18 AC 35 ms
52,528 KB
testcase_19 AC 34 ms
52,964 KB
testcase_20 AC 49 ms
69,620 KB
testcase_21 AC 77 ms
97,920 KB
testcase_22 AC 78 ms
97,848 KB
testcase_23 AC 34 ms
52,480 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n, k = map(int, input().split())

seen = set([1])
L = [1]
for _ in range(k):
    NL = []
    while L:
        a = L.pop()
        b = 2 * a
        c = a + 3
        if b <= n and b not in seen:
            seen.add(b)
            NL.append(b)
        if c <= n and c not in seen:
            seen.add(c)
            NL.append(c)
    L = NL[:]
if n in seen:
    print("YES")
else:
    print("NO")
0