結果

問題 No.2056 非力なレッド
ユーザー ks2mks2m
提出日時 2022-08-26 21:25:13
言語 Java21
(openjdk 21)
結果
AC  
実行時間 358 ms / 2,000 ms
コード長 866 bytes
コンパイル時間 2,469 ms
コンパイル使用メモリ 76,268 KB
実行使用メモリ 61,376 KB
最終ジャッジ日時 2024-10-13 21:48:18
合計ジャッジ時間 12,137 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 55 ms
36,768 KB
testcase_01 AC 54 ms
36,804 KB
testcase_02 AC 54 ms
36,444 KB
testcase_03 AC 56 ms
37,084 KB
testcase_04 AC 54 ms
37,016 KB
testcase_05 AC 56 ms
36,476 KB
testcase_06 AC 55 ms
36,824 KB
testcase_07 AC 56 ms
36,800 KB
testcase_08 AC 56 ms
36,764 KB
testcase_09 AC 54 ms
37,032 KB
testcase_10 AC 55 ms
36,568 KB
testcase_11 AC 55 ms
36,880 KB
testcase_12 AC 54 ms
36,920 KB
testcase_13 AC 277 ms
55,072 KB
testcase_14 AC 272 ms
54,092 KB
testcase_15 AC 279 ms
53,872 KB
testcase_16 AC 119 ms
39,772 KB
testcase_17 AC 210 ms
49,124 KB
testcase_18 AC 100 ms
38,752 KB
testcase_19 AC 122 ms
41,852 KB
testcase_20 AC 321 ms
54,980 KB
testcase_21 AC 157 ms
44,084 KB
testcase_22 AC 275 ms
55,080 KB
testcase_23 AC 250 ms
52,672 KB
testcase_24 AC 207 ms
45,120 KB
testcase_25 AC 342 ms
54,876 KB
testcase_26 AC 321 ms
59,800 KB
testcase_27 AC 295 ms
55,168 KB
testcase_28 AC 330 ms
60,748 KB
testcase_29 AC 337 ms
60,712 KB
testcase_30 AC 336 ms
60,956 KB
testcase_31 AC 337 ms
60,820 KB
testcase_32 AC 328 ms
60,748 KB
testcase_33 AC 343 ms
61,080 KB
testcase_34 AC 335 ms
60,796 KB
testcase_35 AC 333 ms
60,340 KB
testcase_36 AC 330 ms
60,708 KB
testcase_37 AC 358 ms
61,376 KB
testcase_38 AC 54 ms
36,440 KB
testcase_39 AC 54 ms
36,700 KB
testcase_40 AC 52 ms
36,768 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.BufferedReader;
import java.io.InputStreamReader;

public class Main {
	public static void main(String[] args) throws Exception {
		BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
		String[] sa = br.readLine().split(" ");
		int n = Integer.parseInt(sa[0]);
		int x = Integer.parseInt(sa[1]);
		int m = Integer.parseInt(sa[2]);
		sa = br.readLine().split(" ");
		int[] a = new int[n];
		for (int i = 0; i < n; i++) {
			a[i] = Integer.parseInt(sa[i]);
		}
		br.close();

		int[] c = new int[n];
		for (int i = 0; i < n; i++) {
			while (a[i] >= x) {
				a[i] /= 2;
				c[i]++;
			}
		}

		int b = 0;
		int max = 0;
		for (int i = n - 1; i >= 0; i--) {
			if (c[i] > max) {
				b += (c[i] - max) * (i + 1);
				max = c[i];
			}
		}
		if (b <= m) {
			System.out.println("Yes");
		} else {
			System.out.println("No");
		}
	}
}
0