結果

問題 No.1015 おつりは要らないです
ユーザー tachyon777tachyon777
提出日時 2020-04-04 00:05:39
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 900 bytes
コンパイル時間 146 ms
コンパイル使用メモリ 82,084 KB
実行使用メモリ 84,860 KB
最終ジャッジ日時 2024-07-03 06:37:22
合計ジャッジ時間 4,195 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,352 KB
testcase_01 AC 37 ms
51,840 KB
testcase_02 AC 38 ms
52,096 KB
testcase_03 AC 38 ms
52,096 KB
testcase_04 AC 38 ms
51,968 KB
testcase_05 AC 37 ms
51,968 KB
testcase_06 AC 37 ms
52,480 KB
testcase_07 AC 38 ms
52,096 KB
testcase_08 AC 39 ms
51,712 KB
testcase_09 AC 38 ms
51,968 KB
testcase_10 AC 95 ms
83,456 KB
testcase_11 AC 92 ms
83,800 KB
testcase_12 AC 92 ms
83,200 KB
testcase_13 AC 94 ms
83,456 KB
testcase_14 AC 88 ms
83,652 KB
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 90 ms
83,372 KB
testcase_21 AC 97 ms
83,632 KB
testcase_22 AC 99 ms
83,328 KB
testcase_23 AC 90 ms
83,036 KB
testcase_24 AC 95 ms
83,200 KB
testcase_25 AC 90 ms
83,748 KB
testcase_26 AC 96 ms
83,584 KB
testcase_27 AC 97 ms
83,712 KB
testcase_28 AC 93 ms
83,200 KB
testcase_29 AC 97 ms
84,096 KB
testcase_30 AC 36 ms
52,668 KB
testcase_31 AC 54 ms
78,456 KB
testcase_32 AC 59 ms
77,824 KB
testcase_33 WA -
testcase_34 AC 40 ms
52,000 KB
testcase_35 AC 39 ms
51,968 KB
testcase_36 AC 37 ms
52,076 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)

i = 0
l = len(lst1)
while True:
    if i >= l:
        break
    res = lst1[i] + 1
    if res < 10000:
        break
    else:
        if man > 0:
            mai = min(man,res//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
    res = lst1[i]+1
    if res < 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+1)//1000

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


0