結果

問題 No.1015 おつりは要らないです
ユーザー tachyon777tachyon777
提出日時 2020-04-04 00:47:32
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 952 bytes
コンパイル時間 164 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 20,164 KB
最終ジャッジ日時 2024-07-03 06:41:17
合計ジャッジ時間 5,885 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 26 ms
10,752 KB
testcase_01 AC 28 ms
10,624 KB
testcase_02 AC 31 ms
10,880 KB
testcase_03 AC 28 ms
10,880 KB
testcase_04 AC 26 ms
10,496 KB
testcase_05 AC 26 ms
10,880 KB
testcase_06 AC 26 ms
10,624 KB
testcase_07 AC 25 ms
10,624 KB
testcase_08 AC 26 ms
10,624 KB
testcase_09 AC 29 ms
10,752 KB
testcase_10 AC 188 ms
19,784 KB
testcase_11 AC 191 ms
20,044 KB
testcase_12 AC 183 ms
19,416 KB
testcase_13 AC 196 ms
19,668 KB
testcase_14 AC 191 ms
20,156 KB
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 212 ms
19,612 KB
testcase_21 AC 204 ms
19,536 KB
testcase_22 AC 208 ms
19,796 KB
testcase_23 AC 214 ms
19,364 KB
testcase_24 AC 207 ms
19,780 KB
testcase_25 AC 214 ms
19,540 KB
testcase_26 AC 200 ms
19,748 KB
testcase_27 AC 200 ms
19,596 KB
testcase_28 AC 207 ms
19,456 KB
testcase_29 AC 217 ms
19,692 KB
testcase_30 AC 27 ms
10,752 KB
testcase_31 AC 62 ms
12,668 KB
testcase_32 AC 65 ms
12,668 KB
testcase_33 WA -
testcase_34 AC 26 ms
10,496 KB
testcase_35 AC 27 ms
10,752 KB
testcase_36 AC 27 ms
10,624 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 #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