結果

問題 No.1465 Archaea
ユーザー ks2mks2m
提出日時 2021-04-02 21:43:05
言語 Java
(openjdk 23)
結果
AC  
実行時間 359 ms / 2,000 ms
コード長 753 bytes
コンパイル時間 2,050 ms
コンパイル使用メモリ 77,752 KB
実行使用メモリ 57,624 KB
最終ジャッジ日時 2024-12-24 01:11:07
合計ジャッジ時間 7,155 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 148 ms
53,908 KB
testcase_01 AC 150 ms
54,104 KB
testcase_02 AC 149 ms
54,288 KB
testcase_03 AC 156 ms
54,016 KB
testcase_04 AC 149 ms
53,848 KB
testcase_05 AC 149 ms
54,016 KB
testcase_06 AC 143 ms
54,048 KB
testcase_07 AC 206 ms
54,948 KB
testcase_08 AC 146 ms
53,824 KB
testcase_09 AC 246 ms
55,200 KB
testcase_10 AC 146 ms
54,240 KB
testcase_11 AC 221 ms
54,944 KB
testcase_12 AC 146 ms
54,220 KB
testcase_13 AC 359 ms
55,500 KB
testcase_14 AC 218 ms
55,044 KB
testcase_15 AC 131 ms
54,052 KB
testcase_16 AC 131 ms
54,228 KB
testcase_17 AC 149 ms
56,960 KB
testcase_18 AC 117 ms
53,412 KB
testcase_19 AC 203 ms
56,856 KB
testcase_20 AC 137 ms
56,300 KB
testcase_21 AC 157 ms
56,172 KB
testcase_22 AC 134 ms
57,624 KB
testcase_23 AC 119 ms
53,700 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Arrays;
import java.util.Scanner;

public class Main {
	static int[] a;
	static boolean[] b;
	static int inf = 1000000;

	public static void main(String[] args) throws Exception {
		Scanner sc = new Scanner(System.in);
		int n = sc.nextInt();
		int k = sc.nextInt();
		sc.close();

		a = new int[n + 1];
		b = new boolean[n + 1];
		Arrays.fill(a, inf);
		a[1] = 0;
		b[1] = true;
		int res = dfs(n);
		if (res > k) {
			System.out.println("NO");
		} else {
			System.out.println("YES");
		}
	}

	static int dfs(int n) {
		if (b[n]) {
			return a[n];
		}
		b[n] = true;
		int ret = inf;
		if (n >= 4) {
			ret = Math.min(ret, dfs(n - 3) + 1);
		}
		if (n % 2 == 0) {
			ret = Math.min(ret, dfs(n / 2) + 1);
		}
		return a[n] = ret;
	}
}
0