結果

問題 No.1465 Archaea
ユーザー 👑 KazunKazun
提出日時 2021-04-02 21:37:29
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 225 bytes
コンパイル時間 154 ms
コンパイル使用メモリ 82,780 KB
実行使用メモリ 64,404 KB
最終ジャッジ日時 2024-06-06 06:24:44
合計ジャッジ時間 2,108 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
51,936 KB
testcase_01 AC 37 ms
52,676 KB
testcase_02 AC 38 ms
53,024 KB
testcase_03 AC 38 ms
51,944 KB
testcase_04 AC 38 ms
52,304 KB
testcase_05 AC 38 ms
53,964 KB
testcase_06 AC 38 ms
53,236 KB
testcase_07 AC 48 ms
62,720 KB
testcase_08 AC 37 ms
53,484 KB
testcase_09 AC 49 ms
62,792 KB
testcase_10 AC 38 ms
53,724 KB
testcase_11 AC 48 ms
61,852 KB
testcase_12 AC 44 ms
60,448 KB
testcase_13 AC 49 ms
63,216 KB
testcase_14 AC 48 ms
62,164 KB
testcase_15 WA -
testcase_16 WA -
testcase_17 AC 51 ms
64,124 KB
testcase_18 AC 47 ms
61,480 KB
testcase_19 WA -
testcase_20 AC 48 ms
63,184 KB
testcase_21 AC 51 ms
63,632 KB
testcase_22 AC 51 ms
64,404 KB
testcase_23 AC 37 ms
52,672 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[N]<=K else "NO")
0