結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 54 ms
50,448 KB
testcase_01 AC 54 ms
50,204 KB
testcase_02 AC 54 ms
50,328 KB
testcase_03 AC 65 ms
50,500 KB
testcase_04 AC 87 ms
51,228 KB
testcase_05 AC 56 ms
50,300 KB
testcase_06 AC 99 ms
51,920 KB
testcase_07 AC 108 ms
52,216 KB
testcase_08 AC 80 ms
51,340 KB
testcase_09 AC 91 ms
51,876 KB
testcase_10 AC 54 ms
50,248 KB
testcase_11 AC 111 ms
52,156 KB
testcase_12 AC 95 ms
51,364 KB
testcase_13 AC 94 ms
51,348 KB
testcase_14 AC 107 ms
52,180 KB
testcase_15 AC 79 ms
51,220 KB
testcase_16 AC 71 ms
50,900 KB
testcase_17 AC 101 ms
51,476 KB
testcase_18 AC 92 ms
51,704 KB
testcase_19 AC 94 ms
51,156 KB
testcase_20 AC 67 ms
50,680 KB
testcase_21 AC 99 ms
51,420 KB
testcase_22 AC 98 ms
51,804 KB
testcase_23 AC 99 ms
51,468 KB
testcase_24 AC 57 ms
50,072 KB
testcase_25 AC 73 ms
50,848 KB
testcase_26 AC 103 ms
51,844 KB
testcase_27 AC 103 ms
52,168 KB
testcase_28 AC 87 ms
51,192 KB
testcase_29 AC 92 ms
51,768 KB
testcase_30 AC 88 ms
51,812 KB
testcase_31 AC 86 ms
51,480 KB
testcase_32 AC 93 ms
51,644 KB
testcase_33 AC 53 ms
50,204 KB
testcase_34 AC 54 ms
50,536 KB
testcase_35 AC 54 ms
49,924 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