結果

問題 No.1015 おつりは要らないです
ユーザー ntk3264ntk3264
提出日時 2020-04-04 17:31:38
言語 Java21
(openjdk 21)
結果
AC  
実行時間 697 ms / 2,000 ms
コード長 2,070 bytes
コンパイル時間 2,593 ms
コンパイル使用メモリ 78,016 KB
実行使用メモリ 52,596 KB
最終ジャッジ日時 2024-11-18 05:46:43
合計ジャッジ時間 22,090 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 122 ms
39,884 KB
testcase_01 AC 108 ms
41,380 KB
testcase_02 AC 117 ms
41,080 KB
testcase_03 AC 109 ms
41,636 KB
testcase_04 AC 121 ms
41,608 KB
testcase_05 AC 122 ms
41,552 KB
testcase_06 AC 124 ms
41,236 KB
testcase_07 AC 104 ms
41,180 KB
testcase_08 AC 128 ms
41,428 KB
testcase_09 AC 119 ms
41,276 KB
testcase_10 AC 654 ms
48,656 KB
testcase_11 AC 632 ms
52,432 KB
testcase_12 AC 651 ms
49,072 KB
testcase_13 AC 643 ms
48,880 KB
testcase_14 AC 678 ms
49,052 KB
testcase_15 AC 669 ms
48,796 KB
testcase_16 AC 697 ms
49,236 KB
testcase_17 AC 655 ms
52,596 KB
testcase_18 AC 674 ms
48,680 KB
testcase_19 AC 680 ms
49,496 KB
testcase_20 AC 640 ms
49,184 KB
testcase_21 AC 636 ms
49,060 KB
testcase_22 AC 635 ms
48,860 KB
testcase_23 AC 623 ms
49,180 KB
testcase_24 AC 667 ms
48,912 KB
testcase_25 AC 600 ms
48,980 KB
testcase_26 AC 632 ms
48,748 KB
testcase_27 AC 676 ms
49,332 KB
testcase_28 AC 631 ms
49,060 KB
testcase_29 AC 627 ms
49,312 KB
testcase_30 AC 125 ms
40,992 KB
testcase_31 AC 491 ms
47,740 KB
testcase_32 AC 507 ms
48,708 KB
testcase_33 AC 634 ms
50,264 KB
testcase_34 AC 130 ms
40,996 KB
testcase_35 AC 119 ms
41,256 KB
testcase_36 AC 109 ms
41,272 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {

    Scanner sc = new Scanner(System.in);

    public static void main(String[] args) {
        new Main().run();
    }

    void run() {

        int n = sc.nextInt();
        long x = sc.nextLong();
        long y = sc.nextLong();
        long z = sc.nextLong();

        long[] arr = new long[n];
        for (int i=0; i<n; i++) arr[i] = sc.nextLong();

        int max = 0;

        label:
        for (int i=0; i<n; i++) {
            if (z==0) break label;
            if (arr[i]>=10000) {
                long cnt = arr[i]/10000;
                if (z<cnt) cnt = z;
                z -= cnt;
                arr[i] -= cnt*10000;
            }
        }
        Arrays.sort(arr);
        if (z>0) {
            label:
            for (int i=n-1; i>=0; i--) {
                arr[i] -= 10000;
                z--;
                if (z==0) break label;
            }
        }

        label:
        for (int i=0; i<n; i++) {
            if (y==0) break label;
            if (arr[i]>=5000) {
                long cnt = arr[i]/5000;
                if (y<cnt) cnt = y;
                y -= cnt;
                arr[i] -= cnt*5000;
            }
        }
        Arrays.sort(arr);
        if (y>0) {
            label:
            for (int i=n-1; i>=0; i--) {
                arr[i] -= 5000;
                y--;
                if (y==0) break label;
            }
        }

        label:
        for (int i=0; i<n; i++) {
            if (x==0) break label;
            if (arr[i]>=0) {
                long cnt = (arr[i]/1000)+1;
                if (x<cnt) cnt = x;
                x -= cnt;
                arr[i] -= cnt*1000;
            }
        }

        int cnt = 0;
        for (int i=0; i<n; i++) {
            if (arr[i]<0) cnt++;
        }

//        for (int i=0; i<n; i++) {
//            System.out.println(arr[i]);
//        }

//        System.out.println("cnt" +cnt);

        if (cnt==n) {
            System.out.print("Yes");
        } else {
            System.out.print("No");
        }


    }

}
0