結果

問題 No.1015 おつりは要らないです
ユーザー w0mbatw0mbat
提出日時 2021-05-18 16:29:23
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 1,062 bytes
コンパイル時間 387 ms
コンパイル使用メモリ 81,792 KB
実行使用メモリ 94,660 KB
最終ジャッジ日時 2024-10-08 17:34:23
合計ジャッジ時間 6,010 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
51,840 KB
testcase_01 AC 38 ms
51,584 KB
testcase_02 AC 38 ms
51,712 KB
testcase_03 AC 37 ms
51,712 KB
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 AC 37 ms
51,840 KB
testcase_08 AC 36 ms
51,968 KB
testcase_09 AC 36 ms
51,584 KB
testcase_10 AC 121 ms
93,184 KB
testcase_11 AC 124 ms
93,952 KB
testcase_12 AC 121 ms
94,080 KB
testcase_13 AC 124 ms
93,824 KB
testcase_14 AC 124 ms
93,696 KB
testcase_15 AC 119 ms
94,336 KB
testcase_16 AC 120 ms
94,080 KB
testcase_17 AC 123 ms
94,660 KB
testcase_18 AC 120 ms
93,952 KB
testcase_19 AC 121 ms
93,568 KB
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 AC 43 ms
51,840 KB
testcase_31 WA -
testcase_32 AC 84 ms
87,040 KB
testcase_33 AC 85 ms
91,008 KB
testcase_34 AC 38 ms
51,840 KB
testcase_35 WA -
testcase_36 AC 37 ms
51,456 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N, X, Y, Z = map(int, input().split())
*A, = map(int, input().split())
A.sort(reverse=True)
for i in range(N):
    z = min(Z, (A[i] - 1) // 10000)
    A[i] -= z * 10000
    Z -= z
A.sort(reverse=True)
for i in range(N):
    if Z > 0:
        if 0 < A[i] < 10000:
            A[i] = 0
            Z -= 1
        else:
            if X > 0:
                A[i] = 0
                Z -= 1
                X -= 1
            elif Y > 0:
                A[i] = 0
                Z -= 1
                Y -= 1
A.sort(reverse=True)
for i in range(N):
    y = min(Y, (A[i] - 1) // 5000)
    A[i] -= y * 5000
    Y -= y
A.sort(reverse=True)
for i in range(N):
    if Y > 0 and A[i] > 0:
        A[i] = max(0, A[i] - 4999)
        Y -= 1
    if Y > 0:
        if 0 < A[i] < 5000:
            A[i] = 0
            Y -= 1
        else:
            if X > 0:
                A[i] = 0
                Y -= 1
                X -= 1
for i in range(N):
    if A[i] == 0: continue
    x = A[i] // 1000 + 1
    if x > X:
        print('No')
        exit()
    X -= x
print('Yes')
0