結果

問題 No.1465 Archaea
ユーザー 👑 KazunKazun
提出日時 2021-04-02 21:36:55
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 225 bytes
コンパイル時間 521 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 65,152 KB
最終ジャッジ日時 2024-06-06 06:24:10
合計ジャッジ時間 2,333 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 46 ms
51,968 KB
testcase_01 AC 38 ms
51,840 KB
testcase_02 AC 38 ms
51,968 KB
testcase_03 AC 37 ms
51,712 KB
testcase_04 RE -
testcase_05 AC 38 ms
51,712 KB
testcase_06 AC 37 ms
51,712 KB
testcase_07 AC 47 ms
61,824 KB
testcase_08 AC 37 ms
52,480 KB
testcase_09 AC 48 ms
62,080 KB
testcase_10 AC 37 ms
51,584 KB
testcase_11 AC 48 ms
61,824 KB
testcase_12 AC 43 ms
59,136 KB
testcase_13 AC 51 ms
63,232 KB
testcase_14 AC 49 ms
62,328 KB
testcase_15 WA -
testcase_16 WA -
testcase_17 AC 50 ms
63,360 KB
testcase_18 AC 46 ms
60,800 KB
testcase_19 WA -
testcase_20 AC 49 ms
62,336 KB
testcase_21 AC 51 ms
64,000 KB
testcase_22 AC 50 ms
63,872 KB
testcase_23 AC 37 ms
51,968 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,K=map(int,input().split())

inf=float("inf")
DP=[inf]*(N+1)
DP[1]=0

for a in range(2,N+1):
    if a>=3:
        DP[a]=min(DP[a],DP[a-3])

    if a%2==0:
        DP[a]=min(DP[a],DP[a//2])

print("YES" if DP[a]<=K else "NO")
0