結果

問題 No.2056 非力なレッド
ユーザー tentententen
提出日時 2024-04-30 13:17:57
言語 Java21
(openjdk 21)
結果
AC  
実行時間 293 ms / 2,000 ms
コード長 1,666 bytes
コンパイル時間 2,733 ms
コンパイル使用メモリ 78,528 KB
実行使用メモリ 50,728 KB
最終ジャッジ日時 2024-11-20 08:28:14
合計ジャッジ時間 12,068 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 56 ms
37,004 KB
testcase_01 AC 55 ms
36,636 KB
testcase_02 AC 55 ms
37,012 KB
testcase_03 AC 55 ms
36,940 KB
testcase_04 AC 55 ms
36,956 KB
testcase_05 AC 58 ms
37,072 KB
testcase_06 AC 55 ms
36,900 KB
testcase_07 AC 55 ms
37,044 KB
testcase_08 AC 54 ms
37,164 KB
testcase_09 AC 56 ms
37,164 KB
testcase_10 AC 53 ms
36,916 KB
testcase_11 AC 58 ms
37,024 KB
testcase_12 AC 57 ms
36,808 KB
testcase_13 AC 254 ms
46,796 KB
testcase_14 AC 250 ms
46,864 KB
testcase_15 AC 246 ms
46,492 KB
testcase_16 AC 125 ms
39,588 KB
testcase_17 AC 208 ms
45,832 KB
testcase_18 AC 103 ms
39,112 KB
testcase_19 AC 135 ms
40,608 KB
testcase_20 AC 258 ms
47,068 KB
testcase_21 AC 157 ms
42,076 KB
testcase_22 AC 253 ms
46,664 KB
testcase_23 AC 252 ms
46,068 KB
testcase_24 AC 218 ms
44,568 KB
testcase_25 AC 261 ms
47,164 KB
testcase_26 AC 265 ms
48,644 KB
testcase_27 AC 266 ms
48,184 KB
testcase_28 AC 286 ms
50,728 KB
testcase_29 AC 280 ms
50,424 KB
testcase_30 AC 283 ms
50,584 KB
testcase_31 AC 283 ms
50,312 KB
testcase_32 AC 281 ms
50,728 KB
testcase_33 AC 280 ms
50,412 KB
testcase_34 AC 286 ms
50,580 KB
testcase_35 AC 287 ms
50,600 KB
testcase_36 AC 273 ms
50,304 KB
testcase_37 AC 293 ms
50,492 KB
testcase_38 AC 55 ms
37,072 KB
testcase_39 AC 57 ms
36,828 KB
testcase_40 AC 54 ms
36,832 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 strength = sc.nextInt();
        int magic = sc.nextInt();
        int[] values = new int[n];
        for (int i = 0; i < n; i++) {
            values[i] = sc.nextInt();
        }
        int count = 0;
        for (int i = n - 1; i >= 0; i--) {
            for (int j = 0; j < count; j++) {
                values[i] /= 2;
            }
            while (strength <= values[i]) {
                magic -= i + 1;
                values[i] /= 2;
                count++;
            }
        }
        System.out.println(magic >= 0 ? "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