結果

問題 No.1465 Archaea
ユーザー ks2mks2m
提出日時 2021-04-02 21:43:05
言語 Java21
(openjdk 21)
結果
AC  
実行時間 346 ms / 2,000 ms
コード長 753 bytes
コンパイル時間 2,184 ms
コンパイル使用メモリ 77,048 KB
実行使用メモリ 43,308 KB
最終ジャッジ日時 2024-06-06 10:27:53
合計ジャッジ時間 6,726 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 102 ms
39,688 KB
testcase_01 AC 117 ms
41,388 KB
testcase_02 AC 103 ms
39,680 KB
testcase_03 AC 121 ms
41,224 KB
testcase_04 AC 116 ms
40,808 KB
testcase_05 AC 116 ms
41,172 KB
testcase_06 AC 113 ms
41,184 KB
testcase_07 AC 167 ms
41,608 KB
testcase_08 AC 103 ms
39,828 KB
testcase_09 AC 180 ms
41,172 KB
testcase_10 AC 97 ms
39,688 KB
testcase_11 AC 161 ms
41,120 KB
testcase_12 AC 120 ms
41,132 KB
testcase_13 AC 292 ms
43,160 KB
testcase_14 AC 190 ms
41,828 KB
testcase_15 AC 119 ms
40,844 KB
testcase_16 AC 104 ms
39,928 KB
testcase_17 AC 314 ms
43,308 KB
testcase_18 AC 134 ms
41,260 KB
testcase_19 AC 192 ms
42,064 KB
testcase_20 AC 258 ms
42,664 KB
testcase_21 AC 346 ms
43,052 KB
testcase_22 AC 335 ms
42,612 KB
testcase_23 AC 119 ms
41,004 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