結果

問題 No.1465 Archaea
ユーザー martinsmartins
提出日時 2021-04-28 11:37:02
言語 Java21
(openjdk 21)
結果
AC  
実行時間 149 ms / 2,000 ms
コード長 638 bytes
コンパイル時間 3,540 ms
コンパイル使用メモリ 76,400 KB
実行使用メモリ 57,004 KB
最終ジャッジ日時 2024-07-07 05:52:16
合計ジャッジ時間 8,538 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 101 ms
52,756 KB
testcase_01 AC 109 ms
54,236 KB
testcase_02 AC 97 ms
52,756 KB
testcase_03 AC 108 ms
52,932 KB
testcase_04 AC 119 ms
54,052 KB
testcase_05 AC 97 ms
52,688 KB
testcase_06 AC 111 ms
54,088 KB
testcase_07 AC 128 ms
56,168 KB
testcase_08 AC 114 ms
53,748 KB
testcase_09 AC 113 ms
54,912 KB
testcase_10 AC 101 ms
53,076 KB
testcase_11 AC 126 ms
56,052 KB
testcase_12 AC 113 ms
53,960 KB
testcase_13 AC 128 ms
55,996 KB
testcase_14 AC 115 ms
55,236 KB
testcase_15 AC 117 ms
53,996 KB
testcase_16 AC 121 ms
54,092 KB
testcase_17 AC 145 ms
56,828 KB
testcase_18 AC 126 ms
53,924 KB
testcase_19 AC 123 ms
55,684 KB
testcase_20 AC 133 ms
55,940 KB
testcase_21 AC 139 ms
56,760 KB
testcase_22 AC 149 ms
57,004 KB
testcase_23 AC 99 ms
52,916 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
public class Main {

	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in); 
		int n = sc.nextInt();
		int k = sc.nextInt();
		int[] dist = new int[n+1];
		Arrays.fill(dist, -1);
		LinkedList<Integer> q = new LinkedList<>();
		q.add(1);
		dist[1] = 0;
		while(!q.isEmpty()) {
			int u = q.remove();
			int a = 2 * u;
			if(a <= n && dist[a] < 0) {
				dist[a] = dist[u]+1;
				q.add(a);
			}
			int b = u + 3;
			if(b <= n && dist[b] < 0) {
				dist[b] = dist[u] + 1;
				q.add(b);
			}
		}
		if(dist[n] >= 0 && dist[n] <= k) System.out.println("YES");
		else System.out.println("NO");
	}

}
0