結果

問題 No.1465 Archaea
ユーザー tentententen
提出日時 2021-04-13 12:40:04
言語 Java
(openjdk 23)
結果
AC  
実行時間 65 ms / 2,000 ms
コード長 1,371 bytes
コンパイル時間 3,335 ms
コンパイル使用メモリ 77,388 KB
実行使用メモリ 38,172 KB
最終ジャッジ日時 2024-06-29 13:29:20
合計ジャッジ時間 4,673 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 50 ms
36,844 KB
testcase_01 AC 51 ms
37,136 KB
testcase_02 AC 51 ms
37,084 KB
testcase_03 AC 51 ms
37,100 KB
testcase_04 AC 51 ms
37,128 KB
testcase_05 AC 52 ms
37,104 KB
testcase_06 AC 50 ms
37,112 KB
testcase_07 AC 56 ms
37,304 KB
testcase_08 AC 51 ms
36,928 KB
testcase_09 AC 55 ms
37,148 KB
testcase_10 AC 50 ms
36,912 KB
testcase_11 AC 55 ms
37,292 KB
testcase_12 AC 50 ms
37,088 KB
testcase_13 AC 63 ms
37,872 KB
testcase_14 AC 55 ms
37,360 KB
testcase_15 AC 52 ms
37,056 KB
testcase_16 AC 51 ms
36,984 KB
testcase_17 AC 65 ms
37,576 KB
testcase_18 AC 52 ms
37,220 KB
testcase_19 AC 58 ms
37,532 KB
testcase_20 AC 59 ms
37,572 KB
testcase_21 AC 64 ms
38,172 KB
testcase_22 AC 64 ms
38,064 KB
testcase_23 AC 51 ms
37,092 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.*;
import java.util.*;

public class Main {
    public static void main(String[] args) throws Exception {
        Scanner sc = new Scanner();
        int n = sc.nextInt();
        int k = sc.nextInt();
        int[] dp = new int[n + 1];
        Arrays.fill(dp, Integer.MAX_VALUE);
        dp[n] = 0;
        for (int i = n; i > 1; i--) {
            if (dp[i] == Integer.MAX_VALUE) {
                continue;
            }
            if (i % 2 == 0) {
                dp[i / 2] = Math.min(dp[i / 2], dp[i] + 1);
            }
            if (i > 3) {
                dp[i - 3] = Math.min(dp[i - 3], dp[i] + 1);
            }
        }
        if (dp[1] <= k) {
            System.out.println("YES");
        } else {
            System.out.println("NO");
        }
    }
}
class Scanner {
    BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
    StringTokenizer st = new StringTokenizer("");
    
    public Scanner() throws Exception {
        
    }
    
    public int nextInt() throws Exception {
        return Integer.parseInt(next());
    }
    
    public long nextLong() throws Exception {
        return Long.parseLong(next());
    }
    
    public String next() throws Exception {
        if (!st.hasMoreTokens()) {
            st = new StringTokenizer(br.readLine());
        }
        return st.nextToken();
    }
}
0