結果

問題 No.1736 Princess vs. Dragoness
ユーザー merlinmerlin
提出日時 2021-11-12 21:43:14
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 1,057 bytes
コンパイル時間 2,521 ms
コンパイル使用メモリ 78,088 KB
実行使用メモリ 38,804 KB
最終ジャッジ日時 2024-05-04 07:56:42
合計ジャッジ時間 5,157 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 50 ms
37,220 KB
testcase_01 AC 51 ms
37,008 KB
testcase_02 AC 50 ms
37,208 KB
testcase_03 AC 53 ms
37,344 KB
testcase_04 AC 55 ms
37,588 KB
testcase_05 AC 54 ms
37,168 KB
testcase_06 AC 71 ms
38,500 KB
testcase_07 AC 75 ms
38,460 KB
testcase_08 AC 62 ms
37,500 KB
testcase_09 AC 80 ms
38,660 KB
testcase_10 AC 51 ms
37,272 KB
testcase_11 AC 84 ms
38,804 KB
testcase_12 AC 60 ms
38,280 KB
testcase_13 WA -
testcase_14 AC 69 ms
38,244 KB
testcase_15 WA -
testcase_16 WA -
testcase_17 AC 79 ms
38,616 KB
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 55 ms
36,944 KB
testcase_21 AC 75 ms
38,468 KB
testcase_22 AC 76 ms
38,744 KB
testcase_23 AC 65 ms
38,116 KB
testcase_24 AC 50 ms
36,836 KB
testcase_25 AC 53 ms
37,476 KB
testcase_26 AC 72 ms
38,004 KB
testcase_27 AC 77 ms
38,476 KB
testcase_28 AC 63 ms
38,488 KB
testcase_29 AC 73 ms
38,608 KB
testcase_30 AC 75 ms
38,116 KB
testcase_31 AC 56 ms
37,264 KB
testcase_32 AC 61 ms
38,152 KB
testcase_33 AC 50 ms
37,152 KB
testcase_34 AC 48 ms
36,836 KB
testcase_35 AC 49 ms
37,332 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

class Main
{
    public static void main(String args[])throws Exception
    {
        BufferedReader bu=new BufferedReader(new InputStreamReader(System.in));
        StringBuilder sb=new StringBuilder();
        String s[]=bu.readLine().split(" ");
        int n=Integer.parseInt(s[0]),a=Integer.parseInt(s[1]),b=Integer.parseInt(s[2]),x=Integer.parseInt(s[3]),y=Integer.parseInt(s[4]);
        int i; long h[]=new long[n];
        s=bu.readLine().split(" ");
        for(i=0;i<n;i++) h[i]=Integer.parseInt(s[i]);

        long ded=1l*b*y;
        boolean ans=true;
        Arrays.sort(h);
        for(i=0;i<n;i++)
        {
            long tem=Math.min(ded,h[i]);
            h[i]-=tem;
            ded-=tem;
        }
        
        for(i=0;i<n;i++)
        if(h[i]>0)
        {
            long ti=h[i]/x;
            if(h[i]%x!=0) ti++;
            a-=ti;
            if(a<0) {ans=false; break;}
        }
        if(ans) sb.append("Yes\n");
        else sb.append("No\n");
        System.out.print(sb);
    }
}
0