結果

問題 No.1736 Princess vs. Dragoness
ユーザー merlinmerlin
提出日時 2021-11-12 21:38:01
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 904 bytes
コンパイル時間 1,881 ms
コンパイル使用メモリ 77,348 KB
実行使用メモリ 51,468 KB
最終ジャッジ日時 2024-11-25 17:28:20
合計ジャッジ時間 4,991 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 50 ms
50,104 KB
testcase_01 AC 51 ms
50,028 KB
testcase_02 AC 50 ms
50,304 KB
testcase_03 WA -
testcase_04 AC 61 ms
50,624 KB
testcase_05 AC 51 ms
50,256 KB
testcase_06 AC 64 ms
51,008 KB
testcase_07 AC 78 ms
51,024 KB
testcase_08 AC 57 ms
49,724 KB
testcase_09 AC 64 ms
50,480 KB
testcase_10 AC 50 ms
50,156 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 AC 65 ms
51,280 KB
testcase_14 WA -
testcase_15 AC 57 ms
50,172 KB
testcase_16 AC 51 ms
49,848 KB
testcase_17 WA -
testcase_18 AC 67 ms
51,260 KB
testcase_19 AC 64 ms
50,592 KB
testcase_20 AC 52 ms
50,360 KB
testcase_21 WA -
testcase_22 AC 65 ms
50,956 KB
testcase_23 AC 64 ms
50,744 KB
testcase_24 AC 51 ms
50,108 KB
testcase_25 AC 55 ms
49,972 KB
testcase_26 AC 60 ms
50,220 KB
testcase_27 AC 63 ms
50,752 KB
testcase_28 AC 62 ms
50,684 KB
testcase_29 AC 61 ms
50,912 KB
testcase_30 AC 75 ms
50,596 KB
testcase_31 AC 54 ms
49,864 KB
testcase_32 AC 61 ms
50,820 KB
testcase_33 WA -
testcase_34 WA -
testcase_35 AC 50 ms
49,896 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*a*x+1l*b*y;
        boolean ans=true;
        for(i=0;i<n;i++)
        {
            long tem=Math.max(0,Math.min(ded,h[i]));
            h[i]-=tem;
            ded-=tem;
            if(h[i]>0) {ans=false; break;}
        }

        if(ans) sb.append("Yes\n");
        else sb.append("No\n");
        System.out.print(sb);
    }
}
0