結果

問題 No.2056 非力なレッド
ユーザー tentententen
提出日時 2023-03-02 12:57:46
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 2,052 bytes
コンパイル時間 2,366 ms
コンパイル使用メモリ 84,508 KB
実行使用メモリ 60,992 KB
最終ジャッジ日時 2024-09-17 08:38:32
合計ジャッジ時間 10,993 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 48 ms
50,412 KB
testcase_01 AC 49 ms
50,476 KB
testcase_02 AC 50 ms
50,380 KB
testcase_03 AC 49 ms
50,492 KB
testcase_04 AC 48 ms
50,268 KB
testcase_05 AC 48 ms
50,496 KB
testcase_06 AC 51 ms
50,292 KB
testcase_07 AC 49 ms
50,400 KB
testcase_08 AC 48 ms
50,208 KB
testcase_09 AC 50 ms
50,328 KB
testcase_10 AC 51 ms
50,156 KB
testcase_11 AC 49 ms
50,412 KB
testcase_12 AC 50 ms
50,164 KB
testcase_13 AC 219 ms
57,724 KB
testcase_14 AC 214 ms
57,684 KB
testcase_15 AC 216 ms
57,604 KB
testcase_16 AC 114 ms
52,432 KB
testcase_17 AC 179 ms
55,508 KB
testcase_18 AC 92 ms
51,900 KB
testcase_19 AC 118 ms
52,236 KB
testcase_20 AC 221 ms
57,692 KB
testcase_21 AC 150 ms
54,532 KB
testcase_22 AC 228 ms
57,724 KB
testcase_23 AC 213 ms
56,412 KB
testcase_24 AC 184 ms
55,080 KB
testcase_25 AC 238 ms
57,772 KB
testcase_26 AC 255 ms
58,892 KB
testcase_27 AC 251 ms
58,816 KB
testcase_28 AC 257 ms
60,616 KB
testcase_29 AC 261 ms
60,864 KB
testcase_30 AC 260 ms
60,992 KB
testcase_31 AC 251 ms
60,616 KB
testcase_32 AC 255 ms
60,844 KB
testcase_33 AC 263 ms
60,752 KB
testcase_34 AC 252 ms
60,612 KB
testcase_35 AC 252 ms
60,916 KB
testcase_36 AC 246 ms
60,244 KB
testcase_37 AC 253 ms
60,928 KB
testcase_38 AC 49 ms
50,364 KB
testcase_39 WA -
testcase_40 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

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

public class Main {
    public static void main(String[] args) throws Exception {
        Scanner sc = new Scanner();
        int n = sc.nextInt();
        int x = sc.nextInt();
        int m = sc.nextInt();
        int[] values = new int[n];
        for (int i = 0; i < n; i++) {
            values[i] = sc.nextInt();
        }
        int max = 0;
        for (int i = n - 1; i >= 0 && m >= 0; i--) {
            for (int j = 0; j < 32; j++) {
                if (values[i] / (1 << j) <= x) {
                    max = Math.max(max, j);
                    break;
                }
            }
            m -= max;
        }
        if (m >= 0) {
            System.out.println("Yes");
        } else {
            System.out.println("No");
        }
    }
}
class Utilities {
    static String arrayToLineString(Object[] arr) {
        return Arrays.stream(arr).map(x -> x.toString()).collect(Collectors.joining("\n"));
    }
    
    static String arrayToLineString(int[] arr) {
        return String.join("\n", Arrays.stream(arr).mapToObj(String::valueOf).toArray(String[]::new));
    }
}
class Scanner {
    BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
    StringTokenizer st = new StringTokenizer("");
    StringBuilder sb = new StringBuilder();
    
    public Scanner() throws Exception {
        
    }
    
    public int nextInt() throws Exception {
        return Integer.parseInt(next());
    }
    
    public long nextLong() throws Exception {
        return Long.parseLong(next());
    }
    
    public double nextDouble() throws Exception {
        return Double.parseDouble(next());
    }
    
    public int[] nextIntArray() throws Exception {
        return Stream.of(br.readLine().split(" ")).mapToInt(Integer::parseInt).toArray();
    }
    
    public String next() throws Exception {
        while (!st.hasMoreTokens()) {
            st = new StringTokenizer(br.readLine());
        }
        return st.nextToken();
    }
    
}
0