結果

問題 No.2056 非力なレッド
ユーザー tentententen
提出日時 2022-08-27 12:02:13
言語 Java21
(openjdk 21)
結果
AC  
実行時間 273 ms / 2,000 ms
コード長 1,445 bytes
コンパイル時間 2,143 ms
コンパイル使用メモリ 77,396 KB
実行使用メモリ 50,692 KB
最終ジャッジ日時 2024-10-14 10:23:40
合計ジャッジ時間 11,443 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 52 ms
36,832 KB
testcase_01 AC 52 ms
36,988 KB
testcase_02 AC 50 ms
36,636 KB
testcase_03 AC 52 ms
37,052 KB
testcase_04 AC 50 ms
36,868 KB
testcase_05 AC 50 ms
36,628 KB
testcase_06 AC 49 ms
36,572 KB
testcase_07 AC 49 ms
36,604 KB
testcase_08 AC 48 ms
37,012 KB
testcase_09 AC 50 ms
37,068 KB
testcase_10 AC 49 ms
36,696 KB
testcase_11 AC 49 ms
36,852 KB
testcase_12 AC 49 ms
36,824 KB
testcase_13 AC 233 ms
46,440 KB
testcase_14 AC 224 ms
46,528 KB
testcase_15 AC 239 ms
46,428 KB
testcase_16 AC 121 ms
39,860 KB
testcase_17 AC 210 ms
45,696 KB
testcase_18 AC 85 ms
38,908 KB
testcase_19 AC 126 ms
40,324 KB
testcase_20 AC 241 ms
47,156 KB
testcase_21 AC 159 ms
42,928 KB
testcase_22 AC 223 ms
46,532 KB
testcase_23 AC 228 ms
46,060 KB
testcase_24 AC 202 ms
44,588 KB
testcase_25 AC 246 ms
47,060 KB
testcase_26 AC 257 ms
47,956 KB
testcase_27 AC 248 ms
47,832 KB
testcase_28 AC 266 ms
50,504 KB
testcase_29 AC 272 ms
50,484 KB
testcase_30 AC 272 ms
50,548 KB
testcase_31 AC 266 ms
50,456 KB
testcase_32 AC 270 ms
50,632 KB
testcase_33 AC 273 ms
50,584 KB
testcase_34 AC 261 ms
50,412 KB
testcase_35 AC 270 ms
50,296 KB
testcase_36 AC 268 ms
50,692 KB
testcase_37 AC 264 ms
50,660 KB
testcase_38 AC 48 ms
36,904 KB
testcase_39 AC 50 ms
36,776 KB
testcase_40 AC 50 ms
36,804 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();
        int m = sc.nextInt();
        int[] values = new int[n + 1];
        for (int i = 1; i <= n; i++) {
            values[i] = sc.nextInt();
        }
        long base = 1;
        for (int i = n; i >= 1; i--) {
            while (values[i] / base >= x) {
                if (m >= i) {
                    base *= 2;
                    m -= i;
                } else {
                    System.out.println("No");
                    return;
                }
            }
        }
        System.out.println("Yes");
    }
    
}
class Scanner {
    BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
    StringTokenizer st = new StringTokenizer("");
    
    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