結果

問題 No.1736 Princess vs. Dragoness
ユーザー lotokalotoka
提出日時 2021-12-22 21:45:21
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 1,132 bytes
コンパイル時間 2,323 ms
コンパイル使用メモリ 77,692 KB
実行使用メモリ 58,996 KB
最終ジャッジ日時 2024-09-16 16:59:52
合計ジャッジ時間 10,335 ms
ジャッジサーバーID
(参考情報)
judge6 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 124 ms
40,868 KB
testcase_01 AC 127 ms
41,072 KB
testcase_02 AC 127 ms
41,064 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 AC 141 ms
41,352 KB
testcase_06 WA -
testcase_07 AC 241 ms
44,096 KB
testcase_08 WA -
testcase_09 AC 236 ms
44,336 KB
testcase_10 AC 130 ms
41,004 KB
testcase_11 AC 244 ms
44,348 KB
testcase_12 WA -
testcase_13 AC 216 ms
43,772 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 AC 190 ms
41,792 KB
testcase_17 WA -
testcase_18 AC 209 ms
43,008 KB
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 AC 160 ms
41,696 KB
testcase_25 AC 197 ms
42,416 KB
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 AC 203 ms
43,472 KB
testcase_30 AC 217 ms
43,560 KB
testcase_31 AC 215 ms
42,476 KB
testcase_32 WA -
testcase_33 AC 126 ms
41,352 KB
testcase_34 AC 125 ms
41,008 KB
testcase_35 AC 127 ms
41,004 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

class Main{
    public static void main(String[] args){
        Scanner scn = new Scanner(System.in);
        
        int N = scn.nextInt();
        int A = scn.nextInt();
        int B = scn.nextInt();
        int X = scn.nextInt();
        int Y = scn.nextInt();
        int[] H = new int[N];
        
        int mostNum = 0;
        int mostTime = 0;
        
        int sum = 0;
        
        for(int i = 0; i < N; i++){
            H[i] = scn.nextInt();
        }
        
        for(int i = 0; i < A; i++){
            
            mostNum = 0;
            
            for(int j = 0; j < N; j++){
                if(mostNum < H[j]){
                    mostNum = H[j];
                    mostTime = j;
                }
            }
            
            H[mostTime] -= X;
        }
        
        for(int i = 0; i < N; i++){
            if(H[i] < 0){
                H[i] = 0;
            }
            
            sum += H[i];
        }
        
        if(sum <= B * Y){
            System.out.println("Yes");
        }else{
            System.out.println("No");
        }
    }
}
0