結果

問題 No.1015 おつりは要らないです
ユーザー yuly3yuly3
提出日時 2020-04-30 19:15:40
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 899 bytes
コンパイル時間 143 ms
コンパイル使用メモリ 82,108 KB
実行使用メモリ 89,984 KB
最終ジャッジ日時 2024-05-09 18:35:03
合計ジャッジ時間 3,935 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
51,968 KB
testcase_01 AC 35 ms
52,096 KB
testcase_02 AC 35 ms
52,096 KB
testcase_03 AC 35 ms
52,480 KB
testcase_04 AC 35 ms
51,968 KB
testcase_05 AC 35 ms
51,712 KB
testcase_06 AC 35 ms
52,096 KB
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 AC 84 ms
84,864 KB
testcase_11 AC 86 ms
85,696 KB
testcase_12 AC 85 ms
84,608 KB
testcase_13 AC 89 ms
84,736 KB
testcase_14 AC 89 ms
85,888 KB
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 87 ms
89,584 KB
testcase_21 AC 91 ms
89,216 KB
testcase_22 AC 95 ms
89,216 KB
testcase_23 AC 90 ms
87,936 KB
testcase_24 AC 96 ms
89,696 KB
testcase_25 AC 94 ms
89,984 KB
testcase_26 AC 92 ms
89,728 KB
testcase_27 AC 90 ms
89,728 KB
testcase_28 AC 89 ms
89,436 KB
testcase_29 AC 93 ms
89,600 KB
testcase_30 AC 37 ms
52,096 KB
testcase_31 AC 68 ms
83,616 KB
testcase_32 AC 68 ms
83,968 KB
testcase_33 WA -
testcase_34 AC 36 ms
51,712 KB
testcase_35 AC 37 ms
52,224 KB
testcase_36 AC 37 ms
52,480 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys

sys.setrecursionlimit(10 ** 7)
rl = sys.stdin.readline


def solve():
    N, X, Y, Z = map(int, rl().split())
    A = list(map(int, rl().split()))
    
    i = 0
    while 0 < Z and i < N:
        t = min(A[i] // 10000, Z)
        A[i] -= 10000 * t
        Z -= t
        i += 1
    A.sort(reverse=True)
    i = 0
    while 0 < Z and i < N:
        A[i] -= 10000
        Z -= 1
        i += 1
    
    i = 0
    while 0 < Y and i < N:
        if A[i] < 0:
            i += 1
            continue
        t = min(A[i] // 5000, Y)
        A[i] -= 5000 * t
        Z -= t
        i += 1
    A.sort(reverse=True)
    i = 0
    while 0 < Y and i < N:
        A[i] -= 5000
        Y -= 1
        i += 1
    
    cnt = 0
    for ai in A:
        if ai < 0:
            continue
        cnt += -(-(ai + 1) // 1000)
    print('Yes' if cnt <= X else 'No')


if __name__ == '__main__':
    solve()
0