結果

問題 No.1736 Princess vs. Dragoness
ユーザー merlinmerlin
提出日時 2021-11-12 21:48:44
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 1,251 bytes
コンパイル時間 2,035 ms
コンパイル使用メモリ 77,740 KB
実行使用メモリ 38,812 KB
最終ジャッジ日時 2024-11-25 18:00:27
合計ジャッジ時間 5,127 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 48 ms
37,336 KB
testcase_01 AC 48 ms
36,788 KB
testcase_02 AC 47 ms
37,372 KB
testcase_03 AC 51 ms
37,300 KB
testcase_04 AC 57 ms
37,460 KB
testcase_05 AC 47 ms
37,372 KB
testcase_06 WA -
testcase_07 AC 68 ms
38,496 KB
testcase_08 AC 57 ms
37,224 KB
testcase_09 AC 66 ms
38,616 KB
testcase_10 AC 46 ms
37,080 KB
testcase_11 AC 81 ms
38,620 KB
testcase_12 AC 56 ms
37,232 KB
testcase_13 WA -
testcase_14 AC 80 ms
38,812 KB
testcase_15 WA -
testcase_16 WA -
testcase_17 AC 76 ms
38,280 KB
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 AC 63 ms
38,000 KB
testcase_22 AC 76 ms
38,500 KB
testcase_23 AC 65 ms
38,264 KB
testcase_24 WA -
testcase_25 AC 53 ms
36,816 KB
testcase_26 AC 59 ms
37,756 KB
testcase_27 AC 72 ms
38,156 KB
testcase_28 AC 60 ms
37,876 KB
testcase_29 AC 66 ms
38,544 KB
testcase_30 AC 62 ms
38,268 KB
testcase_31 AC 53 ms
37,464 KB
testcase_32 AC 57 ms
36,948 KB
testcase_33 AC 48 ms
37,116 KB
testcase_34 AC 49 ms
37,372 KB
testcase_35 AC 49 ms
37,072 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;
        for(i=0;i<n && ans;i++) //use X first
        {
            long ti=h[i]/x;
            a-=ti;
            h[i]-=ti*x;
            if(a<0) ans=false;
        }

        Arrays.sort(h);
        for(i=0;i<n && ans;i++) //use Y
        {
            long tem=Math.min(ded,h[i]);
            h[i]-=tem;
            ded-=tem;
        }

        for(i=0;i<n && ans;i++) //use X if possible
        if(h[i]>0)
        {
            long ti=h[i]/x;
            if(h[i]%x!=0) ti++;
            a-=ti;
            if(a<0) ans=false;
        }
        if(ans) sb.append("Yes\n");
        else sb.append("No\n");
        System.out.print(sb);
    }
}
0