結果

問題 No.1015 おつりは要らないです
ユーザー tanon710tanon710
提出日時 2020-05-04 18:10:57
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 143 ms / 2,000 ms
コード長 1,183 bytes
コンパイル時間 663 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 95,872 KB
最終ジャッジ日時 2024-04-29 06:14:03
合計ジャッジ時間 5,447 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
51,968 KB
testcase_01 AC 41 ms
51,584 KB
testcase_02 AC 41 ms
51,968 KB
testcase_03 AC 40 ms
51,712 KB
testcase_04 AC 41 ms
52,096 KB
testcase_05 AC 41 ms
51,712 KB
testcase_06 AC 40 ms
51,968 KB
testcase_07 AC 41 ms
51,840 KB
testcase_08 AC 40 ms
51,968 KB
testcase_09 AC 41 ms
52,224 KB
testcase_10 AC 136 ms
94,720 KB
testcase_11 AC 139 ms
95,104 KB
testcase_12 AC 135 ms
94,208 KB
testcase_13 AC 138 ms
94,720 KB
testcase_14 AC 143 ms
95,872 KB
testcase_15 AC 134 ms
94,848 KB
testcase_16 AC 136 ms
94,848 KB
testcase_17 AC 138 ms
95,616 KB
testcase_18 AC 136 ms
94,720 KB
testcase_19 AC 137 ms
95,104 KB
testcase_20 AC 131 ms
93,568 KB
testcase_21 AC 132 ms
93,184 KB
testcase_22 AC 133 ms
93,312 KB
testcase_23 AC 132 ms
92,672 KB
testcase_24 AC 136 ms
93,312 KB
testcase_25 AC 133 ms
94,080 KB
testcase_26 AC 133 ms
93,312 KB
testcase_27 AC 133 ms
93,440 KB
testcase_28 AC 136 ms
93,312 KB
testcase_29 AC 136 ms
93,952 KB
testcase_30 AC 41 ms
51,712 KB
testcase_31 AC 74 ms
83,584 KB
testcase_32 AC 74 ms
83,840 KB
testcase_33 AC 83 ms
90,240 KB
testcase_34 AC 44 ms
51,968 KB
testcase_35 AC 41 ms
51,456 KB
testcase_36 AC 41 ms
51,840 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,x,y,z=map(int,input().split())
arr=list(map(int,input().split()))
arr=sorted(arr,reverse=True)
for i in range(n):
    k=arr[i]//10000
    if k==0:
        break
    if z>=k:
        arr[i]-=k*10000
        z-=k
    else:
        arr[i]-=z*10000
        z=0
        break
arr=sorted(arr,reverse=True)
for i in range(n):
    if z==0:
        break
    else:
        arr[i]=-1
        z-=1
if arr.count(-1)==n:
    print('Yes')
    exit()
arr=sorted(arr,reverse=True)
for i in range(n):
    k=arr[i]//5000
    if k==0:
        break
    if y>=k:
        arr[i]-=k*5000
        y-=k
    else:
        arr[i]-=y*5000
        y=0
        break
arr=sorted(arr,reverse=True)
for i in range(n):
    if y==0:
        break
    else:
        arr[i]=-1
        y-=1
if arr.count(-1)==n:
    print('Yes')
    exit()
arr=sorted(arr,reverse=True)
for i in range(n):
    k=arr[i]//1000
    if k==0:
        break
    if x>=k:
        arr[i]-=k*1000
        x-=k
    else:
        arr[i]-=x*1000
        x=0
        break
arr=sorted(arr,reverse=True)
for i in range(n):
    if x==0:
        break
    else:
        arr[i]=-1
        x-=1
if arr.count(-1)==n:
    print('Yes')
    exit()
print('No')
0