結果

問題 No.1015 おつりは要らないです
ユーザー sca1lsca1l
提出日時 2020-07-20 23:23:32
言語 Java
(openjdk 23)
結果
AC  
実行時間 634 ms / 2,000 ms
コード長 1,480 bytes
コンパイル時間 2,143 ms
コンパイル使用メモリ 78,640 KB
実行使用メモリ 60,612 KB
最終ジャッジ日時 2024-11-18 07:24:32
合計ジャッジ時間 17,020 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 100 ms
53,856 KB
testcase_01 AC 90 ms
52,668 KB
testcase_02 AC 98 ms
54,328 KB
testcase_03 AC 99 ms
53,804 KB
testcase_04 AC 90 ms
52,972 KB
testcase_05 AC 89 ms
53,064 KB
testcase_06 AC 99 ms
54,128 KB
testcase_07 AC 99 ms
54,028 KB
testcase_08 AC 101 ms
54,128 KB
testcase_09 AC 91 ms
52,772 KB
testcase_10 AC 568 ms
59,780 KB
testcase_11 AC 554 ms
60,612 KB
testcase_12 AC 570 ms
59,464 KB
testcase_13 AC 618 ms
60,000 KB
testcase_14 AC 634 ms
60,144 KB
testcase_15 AC 579 ms
60,012 KB
testcase_16 AC 513 ms
59,784 KB
testcase_17 AC 587 ms
60,044 KB
testcase_18 AC 622 ms
59,992 KB
testcase_19 AC 549 ms
60,092 KB
testcase_20 AC 521 ms
59,872 KB
testcase_21 AC 581 ms
60,256 KB
testcase_22 AC 452 ms
59,960 KB
testcase_23 AC 534 ms
59,840 KB
testcase_24 AC 562 ms
59,744 KB
testcase_25 AC 535 ms
59,784 KB
testcase_26 AC 509 ms
59,876 KB
testcase_27 AC 530 ms
59,896 KB
testcase_28 AC 536 ms
59,884 KB
testcase_29 AC 489 ms
60,344 KB
testcase_30 AC 92 ms
52,804 KB
testcase_31 AC 326 ms
59,692 KB
testcase_32 AC 401 ms
59,444 KB
testcase_33 AC 495 ms
60,420 KB
testcase_34 AC 93 ms
52,928 KB
testcase_35 AC 91 ms
53,024 KB
testcase_36 AC 106 ms
54,096 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main{
    
    static final int MOD = (int)1e9+7;
    
    public static void main(String[] args){
        Scanner sc = new Scanner(System.in);
        int n = Integer.parseInt(sc.next());
        int x = Integer.parseInt(sc.next());
        int y = Integer.parseInt(sc.next());
        int z = Integer.parseInt(sc.next());
        int[] c = {z, y, x};
        int[] d = {10000, 5000, 1000};
        
        int[] a = new int[n];
        for(int i=0; i<n; i++){
            a[i] = Integer.parseInt(sc.next());
        }
        
        for(int i=0; i<3; i++){
            rsort(a);
            for(int j=0; j<n; j++){
                int t = Math.max(a[j]/d[i], 0);
                t = Math.min(t, c[i]);
                a[j] -= t*d[i];
                c[i] -= t;
            }
            rsort(a);
            for(int j=0; j<n; j++){
                if(c[i] > 0 && a[j] >= 0){
                    c[i]--;
                    a[j] -= d[i];
                }
            }
        }
        
        boolean ans = true;
        for(int i=0; i<n; i++){
            if(a[i] >= 0){
                ans = false;
                break;
            }
        }
        
        System.out.println(ans ? "Yes" : "No");
    }
    
    public static void rsort(int[] a){
        Arrays.sort(a);
        for(int i=0; i<a.length/2; i++){
            int tmp = a[i];
            a[i] = a[a.length-1-i];
            a[a.length-1-i] = tmp;
        }
    }
}
0