結果

問題 No.1015 おつりは要らないです
ユーザー nagitaosunagitaosu
提出日時 2020-04-03 22:14:32
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 1,185 bytes
コンパイル時間 152 ms
コンパイル使用メモリ 12,928 KB
実行使用メモリ 21,652 KB
最終ジャッジ日時 2024-07-03 03:34:00
合計ジャッジ時間 6,567 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
10,752 KB
testcase_01 AC 34 ms
10,880 KB
testcase_02 AC 31 ms
10,752 KB
testcase_03 AC 31 ms
10,880 KB
testcase_04 WA -
testcase_05 AC 31 ms
10,752 KB
testcase_06 AC 34 ms
10,752 KB
testcase_07 AC 32 ms
10,880 KB
testcase_08 AC 31 ms
10,752 KB
testcase_09 AC 31 ms
10,752 KB
testcase_10 AC 209 ms
21,208 KB
testcase_11 AC 221 ms
21,592 KB
testcase_12 AC 199 ms
20,960 KB
testcase_13 AC 213 ms
21,112 KB
testcase_14 AC 220 ms
21,652 KB
testcase_15 AC 212 ms
21,020 KB
testcase_16 AC 220 ms
21,284 KB
testcase_17 AC 227 ms
21,520 KB
testcase_18 AC 211 ms
21,124 KB
testcase_19 AC 212 ms
21,384 KB
testcase_20 AC 191 ms
21,120 KB
testcase_21 AC 179 ms
21,032 KB
testcase_22 AC 181 ms
21,032 KB
testcase_23 AC 179 ms
20,568 KB
testcase_24 AC 196 ms
21,172 KB
testcase_25 AC 191 ms
21,044 KB
testcase_26 AC 186 ms
21,012 KB
testcase_27 AC 179 ms
20,692 KB
testcase_28 AC 180 ms
20,888 KB
testcase_29 AC 180 ms
21,120 KB
testcase_30 AC 31 ms
10,880 KB
testcase_31 AC 128 ms
12,544 KB
testcase_32 AC 123 ms
12,544 KB
testcase_33 AC 130 ms
21,520 KB
testcase_34 AC 31 ms
10,880 KB
testcase_35 AC 31 ms
10,752 KB
testcase_36 AC 31 ms
10,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#!/usr/bin/env python3
import sys
input = sys.stdin.readline

n, x, y, z = map(int, input().split())
a = [int(item) for item in input().split()]
over_five = []
under_five = []

pay_first = 0
for item in a:
    if item % 1000 != 999:
        item += 1
    pay_first += (item // 10000) * 10000
    if item % 10000 >= 5000:
        over_five.append(item % 10000)
    elif item % 10000 > 0:
        under_five.append(item % 10000)

payment = min(z*10000, pay_first)
z -= payment // 10000; pay_first -= payment

payment = min(y*5000, pay_first)
y -= payment // 5000; pay_first -= payment

payment = min(x*1000, pay_first)
x -= payment // 1000; pay_first -= payment

if pay_first > 0:
    print("No")
    exit()

over_five.sort(reverse=True)
for i, item in enumerate(over_five):
    if z > 0:
        z -= 1
        continue
    if y > 0:
        y -= 1
        under_five.append(item - 5000)
    under_five.append(item)

under_five.sort(reverse=True)

for item in under_five:
    if z > 0:
        z -= 1
        continue
    if y > 0:
        y -= 1
        continue
    use = (item + 999) // 1000
    if x >= use:
        x -= use
    else:
        print("No")
        exit()
print("Yes")
0