結果

問題 No.2056 非力なレッド
ユーザー tentententen
提出日時 2023-08-08 15:55:47
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 2,017 bytes
コンパイル時間 2,699 ms
コンパイル使用メモリ 90,260 KB
実行使用メモリ 50,892 KB
最終ジャッジ日時 2024-11-08 22:02:06
合計ジャッジ時間 11,741 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 48 ms
36,708 KB
testcase_01 AC 46 ms
36,940 KB
testcase_02 AC 47 ms
37,100 KB
testcase_03 AC 47 ms
37,036 KB
testcase_04 AC 47 ms
37,084 KB
testcase_05 AC 46 ms
36,624 KB
testcase_06 AC 48 ms
37,216 KB
testcase_07 AC 46 ms
37,140 KB
testcase_08 AC 46 ms
37,240 KB
testcase_09 AC 46 ms
37,364 KB
testcase_10 AC 47 ms
37,368 KB
testcase_11 AC 46 ms
36,948 KB
testcase_12 AC 45 ms
36,760 KB
testcase_13 AC 225 ms
46,704 KB
testcase_14 AC 214 ms
46,652 KB
testcase_15 AC 231 ms
47,148 KB
testcase_16 AC 106 ms
40,092 KB
testcase_17 AC 185 ms
45,632 KB
testcase_18 AC 91 ms
39,040 KB
testcase_19 AC 118 ms
40,692 KB
testcase_20 AC 221 ms
47,236 KB
testcase_21 AC 143 ms
42,084 KB
testcase_22 AC 217 ms
46,548 KB
testcase_23 AC 211 ms
46,076 KB
testcase_24 AC 150 ms
43,832 KB
testcase_25 AC 230 ms
47,148 KB
testcase_26 AC 239 ms
48,180 KB
testcase_27 AC 236 ms
48,156 KB
testcase_28 AC 259 ms
50,452 KB
testcase_29 AC 246 ms
50,864 KB
testcase_30 AC 251 ms
50,488 KB
testcase_31 AC 242 ms
50,892 KB
testcase_32 AC 250 ms
50,740 KB
testcase_33 AC 263 ms
50,796 KB
testcase_34 AC 244 ms
50,568 KB
testcase_35 AC 246 ms
50,740 KB
testcase_36 AC 246 ms
50,584 KB
testcase_37 AC 236 ms
50,700 KB
testcase_38 AC 46 ms
37,004 KB
testcase_39 WA -
testcase_40 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

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

public class Main {
    public static void main(String[] args) throws Exception {
        Scanner sc = new Scanner();
        int n = sc.nextInt();
        int max = sc.nextInt();
        int m = sc.nextInt();
        int[] values = new int[n];
        for (int i = 0; i < n; i++) {
            values[i] = sc.nextInt();
        }
        int current = 0;
        for (int i = n - 1; i >= 0 && m >= 0; i--) {
            values[i] >>= current;
            while (values[i] > max) {
                values[i] >>= 1;
                current++;
                m -= i + 1;
            }
        }
        if (m >= 0) {
            System.out.println("Yes");
        } else {
            System.out.println("No");
        }
    }
} 
class Utilities {
    static String arrayToLineString(Object[] arr) {
        return Arrays.stream(arr).map(x -> x.toString()).collect(Collectors.joining("\n"));
    }
    
    static String arrayToLineString(int[] arr) {
        return String.join("\n", Arrays.stream(arr).mapToObj(String::valueOf).toArray(String[]::new));
    }
}
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 int[] nextIntArray() throws Exception {
        return Stream.of(br.readLine().split(" ")).mapToInt(Integer::parseInt).toArray();
    }
    
    public String next() throws Exception {
        while (!st.hasMoreTokens()) {
            st = new StringTokenizer(br.readLine());
        }
        return st.nextToken();
    }
    
}
0