結果

問題 No.1015 おつりは要らないです
ユーザー tachyon777tachyon777
提出日時 2020-04-04 10:34:57
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 101 ms / 2,000 ms
コード長 1,001 bytes
コンパイル時間 311 ms
コンパイル使用メモリ 81,888 KB
実行使用メモリ 87,364 KB
最終ジャッジ日時 2024-11-18 05:45:09
合計ジャッジ時間 4,114 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,272 KB
testcase_01 AC 35 ms
52,768 KB
testcase_02 AC 36 ms
52,816 KB
testcase_03 AC 40 ms
52,616 KB
testcase_04 AC 37 ms
52,592 KB
testcase_05 AC 36 ms
53,560 KB
testcase_06 AC 37 ms
53,072 KB
testcase_07 AC 35 ms
52,780 KB
testcase_08 AC 36 ms
53,516 KB
testcase_09 AC 37 ms
52,548 KB
testcase_10 AC 96 ms
85,336 KB
testcase_11 AC 101 ms
87,364 KB
testcase_12 AC 95 ms
86,132 KB
testcase_13 AC 97 ms
86,392 KB
testcase_14 AC 101 ms
87,204 KB
testcase_15 AC 96 ms
86,512 KB
testcase_16 AC 95 ms
87,244 KB
testcase_17 AC 99 ms
86,808 KB
testcase_18 AC 92 ms
86,348 KB
testcase_19 AC 98 ms
86,876 KB
testcase_20 AC 93 ms
84,844 KB
testcase_21 AC 92 ms
84,324 KB
testcase_22 AC 94 ms
84,368 KB
testcase_23 AC 89 ms
85,304 KB
testcase_24 AC 90 ms
84,420 KB
testcase_25 AC 89 ms
83,868 KB
testcase_26 AC 91 ms
85,236 KB
testcase_27 AC 87 ms
85,964 KB
testcase_28 AC 90 ms
84,476 KB
testcase_29 AC 90 ms
85,392 KB
testcase_30 AC 34 ms
53,040 KB
testcase_31 AC 56 ms
78,692 KB
testcase_32 AC 54 ms
78,020 KB
testcase_33 AC 65 ms
84,320 KB
testcase_34 AC 36 ms
52,452 KB
testcase_35 AC 32 ms
52,216 KB
testcase_36 AC 35 ms
53,052 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:
            mai = min(gosen,lst1[i]//5000)
            lst1[i] -= 5000*mai
            gosen -= mai
    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