結果

問題 No.1015 おつりは要らないです
ユーザー tanon710tanon710
提出日時 2020-05-04 18:04:04
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 1,147 bytes
コンパイル時間 303 ms
コンパイル使用メモリ 82,560 KB
実行使用メモリ 97,280 KB
最終ジャッジ日時 2024-06-24 19:26:06
合計ジャッジ時間 5,784 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
52,224 KB
testcase_01 AC 40 ms
51,840 KB
testcase_02 AC 41 ms
51,840 KB
testcase_03 AC 41 ms
52,096 KB
testcase_04 AC 41 ms
52,096 KB
testcase_05 AC 40 ms
52,224 KB
testcase_06 AC 41 ms
51,840 KB
testcase_07 AC 41 ms
51,968 KB
testcase_08 AC 41 ms
52,224 KB
testcase_09 AC 40 ms
52,224 KB
testcase_10 AC 140 ms
96,768 KB
testcase_11 AC 119 ms
91,904 KB
testcase_12 AC 134 ms
95,488 KB
testcase_13 AC 117 ms
91,008 KB
testcase_14 AC 140 ms
97,280 KB
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 131 ms
93,824 KB
testcase_21 AC 132 ms
93,440 KB
testcase_22 AC 131 ms
93,824 KB
testcase_23 AC 130 ms
92,928 KB
testcase_24 AC 133 ms
93,824 KB
testcase_25 AC 131 ms
93,952 KB
testcase_26 AC 130 ms
93,696 KB
testcase_27 AC 130 ms
93,568 KB
testcase_28 AC 128 ms
93,440 KB
testcase_29 AC 132 ms
94,080 KB
testcase_30 AC 42 ms
52,608 KB
testcase_31 AC 74 ms
84,096 KB
testcase_32 AC 74 ms
83,968 KB
testcase_33 AC 83 ms
90,496 KB
testcase_34 AC 40 ms
52,096 KB
testcase_35 AC 41 ms
51,840 KB
testcase_36 AC 42 ms
51,968 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
        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
        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
        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