結果

問題 No.2056 非力なレッド
ユーザー tentententen
提出日時 2024-07-30 13:56:02
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 1,589 bytes
コンパイル時間 2,399 ms
コンパイル使用メモリ 78,312 KB
実行使用メモリ 60,880 KB
最終ジャッジ日時 2024-07-30 13:56:13
合計ジャッジ時間 10,847 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 50 ms
50,148 KB
testcase_01 AC 50 ms
49,968 KB
testcase_02 AC 50 ms
50,224 KB
testcase_03 AC 49 ms
50,080 KB
testcase_04 AC 49 ms
50,360 KB
testcase_05 AC 49 ms
50,252 KB
testcase_06 AC 49 ms
50,248 KB
testcase_07 AC 53 ms
50,112 KB
testcase_08 AC 52 ms
50,044 KB
testcase_09 AC 51 ms
50,044 KB
testcase_10 AC 49 ms
50,264 KB
testcase_11 AC 49 ms
50,376 KB
testcase_12 AC 49 ms
50,348 KB
testcase_13 AC 226 ms
57,988 KB
testcase_14 WA -
testcase_15 AC 233 ms
57,780 KB
testcase_16 AC 120 ms
52,448 KB
testcase_17 AC 201 ms
55,304 KB
testcase_18 AC 83 ms
52,056 KB
testcase_19 AC 124 ms
52,152 KB
testcase_20 AC 226 ms
57,752 KB
testcase_21 AC 151 ms
54,148 KB
testcase_22 AC 215 ms
57,628 KB
testcase_23 AC 239 ms
56,208 KB
testcase_24 AC 184 ms
55,804 KB
testcase_25 AC 234 ms
57,908 KB
testcase_26 AC 246 ms
58,508 KB
testcase_27 AC 238 ms
58,740 KB
testcase_28 AC 271 ms
60,600 KB
testcase_29 AC 273 ms
60,756 KB
testcase_30 AC 259 ms
60,616 KB
testcase_31 AC 250 ms
60,852 KB
testcase_32 AC 242 ms
60,616 KB
testcase_33 AC 277 ms
60,816 KB
testcase_34 AC 255 ms
60,564 KB
testcase_35 AC 257 ms
60,880 KB
testcase_36 AC 251 ms
60,748 KB
testcase_37 AC 259 ms
60,728 KB
testcase_38 AC 54 ms
50,104 KB
testcase_39 AC 53 ms
50,300 KB
testcase_40 AC 51 ms
50,260 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

public class Main {
    public static void main(String[] args) throws Exception {
        Scanner sc = new Scanner();
        int n = sc.nextInt();
        int target = sc.nextInt();
        int m = sc.nextInt();
        int[] values = new int[n + 1];
        for (int i = 1; i <= n; i++) {
            values[i] = sc.nextInt();
        }
        int count = 0;
        for (int i = n; i >= 1 && count <= m; i--) {
            values[i] >>= count;
            while (values[i] >= target) {
                values[i] >>= 1;
                count += i;
            }
        }
        System.out.println(count <= m ? "Yes" : "No");
    }
}
class Scanner {
    BufferedReader br;
    StringTokenizer st = new StringTokenizer("");
    StringBuilder sb = new StringBuilder();
    
    public Scanner() {
        try {
            br = new BufferedReader(new InputStreamReader(System.in));
        } catch (Exception e) {
            
        }
    }
    
    public int nextInt() {
        return Integer.parseInt(next());
    }
    
    public long nextLong() {
        return Long.parseLong(next());
    }
    
    public double nextDouble() {
        return Double.parseDouble(next());
    }
    
    public String next() {
        try {
            while (!st.hasMoreTokens()) {
                st = new StringTokenizer(br.readLine());
            }
        } catch (Exception e) {
            e.printStackTrace();
        } finally {
            return st.nextToken();
        }
    }
    
}


0