結果

問題 No.1015 おつりは要らないです
ユーザー tachyon777tachyon777
提出日時 2020-04-04 00:09:52
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 911 bytes
コンパイル時間 275 ms
コンパイル使用メモリ 87,080 KB
実行使用メモリ 92,280 KB
最終ジャッジ日時 2023-09-16 05:07:09
合計ジャッジ時間 6,095 ms
ジャッジサーバーID
(参考情報)
judge11 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 72 ms
71,120 KB
testcase_01 AC 73 ms
71,036 KB
testcase_02 AC 70 ms
71,344 KB
testcase_03 AC 73 ms
71,316 KB
testcase_04 AC 71 ms
71,508 KB
testcase_05 AC 69 ms
71,136 KB
testcase_06 AC 73 ms
71,188 KB
testcase_07 AC 69 ms
71,188 KB
testcase_08 AC 71 ms
71,504 KB
testcase_09 AC 70 ms
71,476 KB
testcase_10 AC 125 ms
91,104 KB
testcase_11 AC 125 ms
91,276 KB
testcase_12 AC 123 ms
91,072 KB
testcase_13 AC 123 ms
91,284 KB
testcase_14 AC 124 ms
91,276 KB
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 130 ms
91,964 KB
testcase_21 AC 129 ms
91,696 KB
testcase_22 AC 128 ms
91,956 KB
testcase_23 AC 129 ms
91,680 KB
testcase_24 AC 132 ms
91,724 KB
testcase_25 AC 131 ms
92,056 KB
testcase_26 AC 129 ms
91,880 KB
testcase_27 AC 129 ms
91,908 KB
testcase_28 AC 129 ms
91,772 KB
testcase_29 AC 130 ms
92,280 KB
testcase_30 AC 71 ms
71,420 KB
testcase_31 AC 89 ms
89,832 KB
testcase_32 AC 92 ms
89,768 KB
testcase_33 WA -
testcase_34 AC 69 ms
71,048 KB
testcase_35 AC 73 ms
71,464 KB
testcase_36 AC 70 ms
71,328 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
readline = sys.stdin.buffer.readline
def even(n): return 1 if n%2==0 else 0

n,sen,gosen,man = map(int,readline().split())
lst1 = list(map(int,readline().split()))

lst1.sort(reverse=True)
for i in range(len(lst1)):
    lst1[i] += 1
i = 0
l = len(lst1)
while True:
    if i >= l:
        break
    if lst1[i] < 10000:
        break
    else:
        if man > 0:
            mai = min(man,lst1[i]//10000)
            lst1[i] -= mai*10000
            man -= mai
    i += 1
        

lst1.sort(reverse=True)
if man:
    lst1 = lst1[man:]

i = 0
l = len(lst1)
while True:
    if i >= l:
        break
    if lst1[i] < 5000:
        break
    else:
        if gosen > 0:
            lst1[i] -= 5000
            gosen -= 1
    i += 1

lst1.sort(reverse=True)
if gosen:
    lst1 = lst1[gosen:]

need = 0
for i in lst1:
    need += (i+1000-1)//1000

if sen >= need:
    print("Yes")
else:
    print("No") 


0