結果

問題 No.1015 おつりは要らないです
ユーザー qumazakiqumazaki
提出日時 2020-09-09 01:03:52
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 58 ms / 2,000 ms
コード長 1,119 bytes
コンパイル時間 244 ms
コンパイル使用メモリ 82,120 KB
実行使用メモリ 85,080 KB
最終ジャッジ日時 2024-11-18 07:25:27
合計ジャッジ時間 2,913 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
53,408 KB
testcase_01 AC 30 ms
52,628 KB
testcase_02 AC 30 ms
52,828 KB
testcase_03 AC 30 ms
52,560 KB
testcase_04 AC 30 ms
53,800 KB
testcase_05 AC 29 ms
53,252 KB
testcase_06 AC 32 ms
52,528 KB
testcase_07 AC 30 ms
52,116 KB
testcase_08 AC 30 ms
53,004 KB
testcase_09 AC 30 ms
52,672 KB
testcase_10 AC 53 ms
83,768 KB
testcase_11 AC 55 ms
83,488 KB
testcase_12 AC 55 ms
83,336 KB
testcase_13 AC 58 ms
84,428 KB
testcase_14 AC 55 ms
83,824 KB
testcase_15 AC 58 ms
83,612 KB
testcase_16 AC 55 ms
84,388 KB
testcase_17 AC 55 ms
84,036 KB
testcase_18 AC 55 ms
84,220 KB
testcase_19 AC 55 ms
83,992 KB
testcase_20 AC 53 ms
82,760 KB
testcase_21 AC 53 ms
82,408 KB
testcase_22 AC 54 ms
83,096 KB
testcase_23 AC 53 ms
82,600 KB
testcase_24 AC 54 ms
83,760 KB
testcase_25 AC 52 ms
82,456 KB
testcase_26 AC 53 ms
83,032 KB
testcase_27 AC 53 ms
82,352 KB
testcase_28 AC 52 ms
82,732 KB
testcase_29 AC 53 ms
82,904 KB
testcase_30 AC 31 ms
51,872 KB
testcase_31 AC 48 ms
78,316 KB
testcase_32 AC 47 ms
78,668 KB
testcase_33 AC 54 ms
85,080 KB
testcase_34 AC 30 ms
52,300 KB
testcase_35 AC 31 ms
52,624 KB
testcase_36 AC 29 ms
52,552 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,x,y,z = map(int,input().split())
a = list(map(int,input().split()))

cnt_10000 = 0
rem = [0]*10
for i in range(n):
    cnt_10000 += a[i]//10000
    a[i] %= 10000
    rem[a[i]//1000] += 1

if(cnt_10000 <= z):
    z -= cnt_10000
    cnt_10000 = 0
else:
    cnt_10000 -= z
    z = 0

cnt_10000 *= 10
if(cnt_10000 <= y*5):
    y -= cnt_10000//5
    cnt_10000 = 0
else:
    cnt_10000 -= y*5
    y = 0

if(cnt_10000 <= x):
    x -= cnt_10000
    cnt_10000 = 0
else:
    print('No')
    exit()

if(sum(rem) <= z):
    print('Yes')
    exit()


for i in range(9,-1,-1):
    if(rem[i] >= z):
        rem[i] -= z
        z = 0
        break
    z -= rem[i]
    rem[i] = 0

for i in range(9,4,-1):
    if(rem[i] >= y):
        rem[i-5] += y
        rem[i] -= y
        y = 0
        break
    rem[i-5] += rem[i]
    y -= rem[i]
    rem[i] = 0

if(sum(rem) <= y):
    print('Yes')
    exit()

for i in range(4,-1,-1):
    if(rem[i] >= y):
        rem[i] -= y
        y = 0
        break
    y -= rem[i]
    rem[i] = 0

need = 0
for i,ri in enumerate(rem,1):
    need += ri*i

if(need <= x):
    print('Yes')
else:
    print('No')
0