結果

問題 No.2056 非力なレッド
ユーザー tentententen
提出日時 2022-09-27 08:31:44
言語 Java21
(openjdk 21)
結果
AC  
実行時間 258 ms / 2,000 ms
コード長 1,556 bytes
コンパイル時間 2,868 ms
コンパイル使用メモリ 77,460 KB
実行使用メモリ 50,984 KB
最終ジャッジ日時 2024-06-02 00:50:55
合計ジャッジ時間 10,801 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 50 ms
37,240 KB
testcase_01 AC 49 ms
37,136 KB
testcase_02 AC 52 ms
37,088 KB
testcase_03 AC 51 ms
37,068 KB
testcase_04 AC 48 ms
37,116 KB
testcase_05 AC 50 ms
37,056 KB
testcase_06 AC 48 ms
37,284 KB
testcase_07 AC 51 ms
37,184 KB
testcase_08 AC 51 ms
37,228 KB
testcase_09 AC 51 ms
37,268 KB
testcase_10 AC 47 ms
37,220 KB
testcase_11 AC 47 ms
37,228 KB
testcase_12 AC 49 ms
36,796 KB
testcase_13 AC 234 ms
47,324 KB
testcase_14 AC 223 ms
47,192 KB
testcase_15 AC 209 ms
47,292 KB
testcase_16 AC 109 ms
39,880 KB
testcase_17 AC 180 ms
45,040 KB
testcase_18 AC 87 ms
39,304 KB
testcase_19 AC 123 ms
41,276 KB
testcase_20 AC 223 ms
47,668 KB
testcase_21 AC 134 ms
43,160 KB
testcase_22 AC 214 ms
46,696 KB
testcase_23 AC 225 ms
46,456 KB
testcase_24 AC 171 ms
44,956 KB
testcase_25 AC 250 ms
47,036 KB
testcase_26 AC 253 ms
48,288 KB
testcase_27 AC 239 ms
48,216 KB
testcase_28 AC 255 ms
50,608 KB
testcase_29 AC 250 ms
50,548 KB
testcase_30 AC 258 ms
50,364 KB
testcase_31 AC 253 ms
50,768 KB
testcase_32 AC 254 ms
50,744 KB
testcase_33 AC 258 ms
50,872 KB
testcase_34 AC 255 ms
50,392 KB
testcase_35 AC 249 ms
50,404 KB
testcase_36 AC 254 ms
50,884 KB
testcase_37 AC 258 ms
50,984 KB
testcase_38 AC 49 ms
37,160 KB
testcase_39 AC 49 ms
37,016 KB
testcase_40 AC 50 ms
37,284 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

public class Main {
    public static void main(String[] args) throws Exception {
        Scanner sc = new Scanner();
        int n = sc.nextInt();
        int x = sc.nextInt();
        long m = sc.nextInt();
        int[] counts = new int[n];
        for (int i = 0; i < n; i++) {
            int y = sc.nextInt();
            while (y >= x) {
                y /= 2;
                counts[i]++;
            }
        }
        int score = 0;
        for (int i = n - 1; i >= 0; i--) {
            if (counts[i] - score > 0) {
                m -= (i + 1L) * (counts[i] - score);
                score = counts[i];
            }
        }
        if (m >= 0) {
            System.out.println("Yes");
        } else {
            System.out.println("No");
        }
    }
}
    
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 String next() throws Exception {
        while (!st.hasMoreTokens()) {
            st = new StringTokenizer(br.readLine());
        }
        return st.nextToken();
    }
    
}
0