結果

問題 No.1015 おつりは要らないです
ユーザー tachyon777tachyon777
提出日時 2020-04-04 00:42:34
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 949 bytes
コンパイル時間 130 ms
コンパイル使用メモリ 82,464 KB
実行使用メモリ 88,992 KB
最終ジャッジ日時 2024-07-03 06:39:59
合計ジャッジ時間 3,998 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
52,888 KB
testcase_01 AC 37 ms
52,860 KB
testcase_02 AC 37 ms
53,216 KB
testcase_03 AC 34 ms
53,300 KB
testcase_04 AC 34 ms
52,192 KB
testcase_05 AC 35 ms
53,528 KB
testcase_06 AC 34 ms
52,908 KB
testcase_07 AC 36 ms
53,928 KB
testcase_08 AC 36 ms
54,224 KB
testcase_09 AC 35 ms
53,604 KB
testcase_10 AC 96 ms
86,364 KB
testcase_11 AC 94 ms
87,956 KB
testcase_12 AC 89 ms
86,824 KB
testcase_13 AC 92 ms
87,444 KB
testcase_14 AC 98 ms
88,164 KB
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 96 ms
87,480 KB
testcase_21 AC 94 ms
86,420 KB
testcase_22 AC 98 ms
87,296 KB
testcase_23 AC 95 ms
86,184 KB
testcase_24 AC 97 ms
87,292 KB
testcase_25 AC 98 ms
87,480 KB
testcase_26 AC 95 ms
86,972 KB
testcase_27 AC 96 ms
86,980 KB
testcase_28 AC 95 ms
86,404 KB
testcase_29 AC 96 ms
86,724 KB
testcase_30 AC 34 ms
52,944 KB
testcase_31 AC 53 ms
79,280 KB
testcase_32 AC 56 ms
79,760 KB
testcase_33 WA -
testcase_34 AC 33 ms
52,196 KB
testcase_35 AC 35 ms
52,252 KB
testcase_36 AC 33 ms
53,312 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,input().split()))

lst1.sort(reverse=True)
for i in range(len(lst1)):
    lst1[i] += 1 #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