結果

問題 No.2056 非力なレッド
ユーザー tentententen
提出日時 2022-09-27 08:31:44
言語 Java
(openjdk 23)
結果
AC  
実行時間 292 ms / 2,000 ms
コード長 1,556 bytes
コンパイル時間 2,924 ms
コンパイル使用メモリ 77,096 KB
実行使用メモリ 50,900 KB
最終ジャッジ日時 2024-12-22 16:31:03
合計ジャッジ時間 11,679 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 57 ms
37,148 KB
testcase_01 AC 56 ms
37,056 KB
testcase_02 AC 54 ms
37,068 KB
testcase_03 AC 56 ms
36,896 KB
testcase_04 AC 55 ms
36,980 KB
testcase_05 AC 55 ms
37,120 KB
testcase_06 AC 56 ms
37,028 KB
testcase_07 AC 54 ms
36,992 KB
testcase_08 AC 56 ms
37,056 KB
testcase_09 AC 54 ms
36,668 KB
testcase_10 AC 54 ms
36,972 KB
testcase_11 AC 56 ms
37,228 KB
testcase_12 AC 55 ms
37,016 KB
testcase_13 AC 244 ms
46,640 KB
testcase_14 AC 257 ms
46,748 KB
testcase_15 AC 245 ms
46,596 KB
testcase_16 AC 123 ms
40,044 KB
testcase_17 AC 201 ms
45,960 KB
testcase_18 AC 105 ms
38,860 KB
testcase_19 AC 133 ms
40,592 KB
testcase_20 AC 254 ms
47,184 KB
testcase_21 AC 169 ms
42,956 KB
testcase_22 AC 246 ms
46,904 KB
testcase_23 AC 227 ms
46,244 KB
testcase_24 AC 189 ms
43,832 KB
testcase_25 AC 261 ms
46,912 KB
testcase_26 AC 274 ms
48,240 KB
testcase_27 AC 264 ms
47,896 KB
testcase_28 AC 292 ms
50,696 KB
testcase_29 AC 288 ms
50,672 KB
testcase_30 AC 281 ms
50,404 KB
testcase_31 AC 286 ms
50,844 KB
testcase_32 AC 275 ms
50,812 KB
testcase_33 AC 289 ms
50,900 KB
testcase_34 AC 287 ms
50,848 KB
testcase_35 AC 283 ms
50,736 KB
testcase_36 AC 280 ms
50,392 KB
testcase_37 AC 286 ms
50,772 KB
testcase_38 AC 55 ms
37,244 KB
testcase_39 AC 56 ms
37,056 KB
testcase_40 AC 53 ms
37,144 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