結果

問題 No.1015 おつりは要らないです
ユーザー yuly3yuly3
提出日時 2020-04-30 19:09:54
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 916 bytes
コンパイル時間 460 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 87,808 KB
最終ジャッジ日時 2024-05-09 18:26:32
合計ジャッジ時間 5,172 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 48 ms
51,712 KB
testcase_01 AC 48 ms
51,712 KB
testcase_02 AC 43 ms
51,712 KB
testcase_03 AC 43 ms
52,224 KB
testcase_04 AC 44 ms
51,968 KB
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 AC 106 ms
84,352 KB
testcase_11 AC 109 ms
85,120 KB
testcase_12 AC 104 ms
84,352 KB
testcase_13 AC 107 ms
84,736 KB
testcase_14 AC 117 ms
85,632 KB
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
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 44 ms
51,712 KB
testcase_31 WA -
testcase_32 AC 79 ms
81,920 KB
testcase_33 WA -
testcase_34 AC 43 ms
51,968 KB
testcase_35 AC 44 ms
51,968 KB
testcase_36 AC 44 ms
51,968 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:
        if A[i] < 0:
            break
        A[i] -= 10000
        Z -= 1
        i += 1
    
    i = 0
    while 0 < Y and i < N:
        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:
        if A[i] < 0:
            break
        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