結果

問題 No.1736 Princess vs. Dragoness
ユーザー merlinmerlin
提出日時 2021-11-12 21:48:44
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 1,251 bytes
コンパイル時間 2,072 ms
コンパイル使用メモリ 78,236 KB
実行使用メモリ 53,056 KB
最終ジャッジ日時 2024-05-04 08:13:30
合計ジャッジ時間 4,968 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 47 ms
50,224 KB
testcase_01 AC 47 ms
50,012 KB
testcase_02 AC 48 ms
50,344 KB
testcase_03 AC 53 ms
50,324 KB
testcase_04 AC 56 ms
50,488 KB
testcase_05 AC 49 ms
50,268 KB
testcase_06 WA -
testcase_07 AC 66 ms
51,400 KB
testcase_08 AC 53 ms
50,412 KB
testcase_09 AC 69 ms
51,392 KB
testcase_10 AC 46 ms
50,324 KB
testcase_11 AC 76 ms
51,812 KB
testcase_12 AC 65 ms
50,820 KB
testcase_13 WA -
testcase_14 AC 80 ms
51,440 KB
testcase_15 WA -
testcase_16 WA -
testcase_17 AC 65 ms
51,156 KB
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 AC 61 ms
51,180 KB
testcase_22 AC 69 ms
53,056 KB
testcase_23 AC 74 ms
51,324 KB
testcase_24 WA -
testcase_25 AC 51 ms
50,128 KB
testcase_26 AC 57 ms
50,416 KB
testcase_27 AC 75 ms
51,280 KB
testcase_28 AC 64 ms
51,380 KB
testcase_29 AC 72 ms
51,052 KB
testcase_30 AC 72 ms
51,140 KB
testcase_31 AC 54 ms
50,096 KB
testcase_32 AC 63 ms
50,644 KB
testcase_33 AC 49 ms
49,948 KB
testcase_34 AC 47 ms
50,492 KB
testcase_35 AC 46 ms
50,112 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