結果

問題 No.1736 Princess vs. Dragoness
ユーザー tentententen
提出日時 2021-11-15 08:57:12
言語 Java
(openjdk 23)
結果
AC  
実行時間 109 ms / 2,000 ms
コード長 1,646 bytes
コンパイル時間 2,574 ms
コンパイル使用メモリ 78,460 KB
実行使用メモリ 52,252 KB
最終ジャッジ日時 2024-12-14 04:53:30
合計ジャッジ時間 6,423 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 54 ms
50,400 KB
testcase_01 AC 53 ms
50,504 KB
testcase_02 AC 53 ms
50,428 KB
testcase_03 AC 63 ms
50,376 KB
testcase_04 AC 85 ms
51,160 KB
testcase_05 AC 55 ms
50,344 KB
testcase_06 AC 84 ms
51,572 KB
testcase_07 AC 101 ms
52,040 KB
testcase_08 AC 89 ms
51,448 KB
testcase_09 AC 84 ms
51,812 KB
testcase_10 AC 53 ms
50,320 KB
testcase_11 AC 109 ms
52,252 KB
testcase_12 AC 90 ms
51,520 KB
testcase_13 AC 95 ms
51,904 KB
testcase_14 AC 103 ms
52,224 KB
testcase_15 AC 81 ms
51,384 KB
testcase_16 AC 71 ms
50,644 KB
testcase_17 AC 98 ms
51,664 KB
testcase_18 AC 95 ms
51,736 KB
testcase_19 AC 81 ms
51,228 KB
testcase_20 AC 68 ms
50,660 KB
testcase_21 AC 93 ms
51,508 KB
testcase_22 AC 95 ms
51,568 KB
testcase_23 AC 88 ms
51,936 KB
testcase_24 AC 54 ms
50,060 KB
testcase_25 AC 75 ms
50,568 KB
testcase_26 AC 95 ms
51,712 KB
testcase_27 AC 103 ms
52,048 KB
testcase_28 AC 81 ms
51,784 KB
testcase_29 AC 90 ms
51,424 KB
testcase_30 AC 97 ms
51,908 KB
testcase_31 AC 84 ms
51,228 KB
testcase_32 AC 89 ms
51,900 KB
testcase_33 AC 54 ms
50,416 KB
testcase_34 AC 54 ms
49,972 KB
testcase_35 AC 55 ms
50,024 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

public class Main {
    public static void main(String[] args) throws Exception {
        Scanner sc = new Scanner();
        int n = sc.nextInt();
        int a = sc.nextInt();
        int b = sc.nextInt();
        int x = sc.nextInt();
        long y = sc.nextInt();
        PriorityQueue<Integer> queue = new PriorityQueue<>();
        for (int i = 0; i < n; i++) {
            queue.add(-sc.nextInt());
        }
        for (int i = 0; i < a && queue.size() > 0; i++) {
            int z = -queue.poll();
            if (z > x) {
                queue.add(x - z);
            }
        }
        long sum = 0;
        while (queue.size() > 0) {
            sum -= queue.poll();
        }
        if (sum <= b * y) {
            System.out.println("Yes");
        } else {
            System.out.println("No");
        }
    }
}
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 nextLine() throws Exception {
        return br.readLine();
    }
    
    public String next() throws Exception {
        if (!st.hasMoreTokens()) {
            st = new StringTokenizer(br.readLine());
        }
        return st.nextToken();
    }
}
0