結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
51,840 KB
testcase_01 AC 33 ms
51,712 KB
testcase_02 AC 34 ms
52,096 KB
testcase_03 AC 33 ms
51,968 KB
testcase_04 WA -
testcase_05 AC 33 ms
51,712 KB
testcase_06 AC 33 ms
51,584 KB
testcase_07 AC 49 ms
68,736 KB
testcase_08 AC 37 ms
62,336 KB
testcase_09 AC 54 ms
73,600 KB
testcase_10 AC 32 ms
51,584 KB
testcase_11 AC 48 ms
71,296 KB
testcase_12 AC 41 ms
61,824 KB
testcase_13 AC 70 ms
89,600 KB
testcase_14 AC 52 ms
70,784 KB
testcase_15 AC 34 ms
51,968 KB
testcase_16 AC 36 ms
52,096 KB
testcase_17 AC 60 ms
85,760 KB
testcase_18 AC 32 ms
52,480 KB
testcase_19 AC 31 ms
51,456 KB
testcase_20 AC 47 ms
68,864 KB
testcase_21 AC 76 ms
97,792 KB
testcase_22 AC 74 ms
97,280 KB
testcase_23 AC 31 ms
51,840 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

seen = set()
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