結果

問題 No.1015 おつりは要らないです
ユーザー tanon710tanon710
提出日時 2020-05-04 18:10:57
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 121 ms / 2,000 ms
コード長 1,183 bytes
コンパイル時間 415 ms
コンパイル使用メモリ 81,968 KB
実行使用メモリ 97,232 KB
最終ジャッジ日時 2024-11-18 07:20:10
合計ジャッジ時間 4,589 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
53,924 KB
testcase_01 AC 35 ms
52,756 KB
testcase_02 AC 33 ms
53,144 KB
testcase_03 AC 33 ms
53,296 KB
testcase_04 AC 33 ms
52,072 KB
testcase_05 AC 34 ms
53,248 KB
testcase_06 AC 33 ms
53,092 KB
testcase_07 AC 33 ms
52,916 KB
testcase_08 AC 32 ms
52,772 KB
testcase_09 AC 33 ms
52,748 KB
testcase_10 AC 113 ms
95,152 KB
testcase_11 AC 117 ms
96,256 KB
testcase_12 AC 114 ms
95,588 KB
testcase_13 AC 118 ms
95,760 KB
testcase_14 AC 121 ms
97,212 KB
testcase_15 AC 118 ms
96,968 KB
testcase_16 AC 115 ms
95,840 KB
testcase_17 AC 118 ms
97,232 KB
testcase_18 AC 114 ms
95,372 KB
testcase_19 AC 112 ms
96,560 KB
testcase_20 AC 112 ms
94,636 KB
testcase_21 AC 110 ms
93,908 KB
testcase_22 AC 111 ms
94,232 KB
testcase_23 AC 108 ms
93,484 KB
testcase_24 AC 110 ms
94,392 KB
testcase_25 AC 111 ms
94,352 KB
testcase_26 AC 109 ms
94,508 KB
testcase_27 AC 105 ms
94,128 KB
testcase_28 AC 109 ms
94,632 KB
testcase_29 AC 111 ms
94,896 KB
testcase_30 AC 34 ms
52,440 KB
testcase_31 AC 59 ms
84,524 KB
testcase_32 AC 60 ms
84,988 KB
testcase_33 AC 66 ms
90,700 KB
testcase_34 AC 34 ms
52,000 KB
testcase_35 AC 32 ms
52,608 KB
testcase_36 AC 33 ms
53,124 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