結果

問題 No.1015 おつりは要らないです
ユーザー titiatitia
提出日時 2020-04-03 21:48:37
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 315 ms / 2,000 ms
コード長 775 bytes
コンパイル時間 261 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 21,760 KB
最終ジャッジ日時 2024-11-17 23:08:44
合計ジャッジ時間 8,073 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
10,752 KB
testcase_01 AC 28 ms
10,752 KB
testcase_02 AC 27 ms
10,880 KB
testcase_03 AC 27 ms
10,624 KB
testcase_04 AC 27 ms
10,624 KB
testcase_05 AC 29 ms
10,624 KB
testcase_06 AC 28 ms
10,752 KB
testcase_07 AC 28 ms
10,752 KB
testcase_08 AC 29 ms
10,880 KB
testcase_09 AC 27 ms
10,624 KB
testcase_10 AC 281 ms
21,060 KB
testcase_11 AC 311 ms
21,320 KB
testcase_12 AC 290 ms
20,940 KB
testcase_13 AC 289 ms
21,168 KB
testcase_14 AC 315 ms
21,760 KB
testcase_15 AC 286 ms
21,000 KB
testcase_16 AC 298 ms
21,272 KB
testcase_17 AC 302 ms
21,500 KB
testcase_18 AC 297 ms
20,980 KB
testcase_19 AC 283 ms
21,144 KB
testcase_20 AC 277 ms
20,972 KB
testcase_21 AC 281 ms
20,788 KB
testcase_22 AC 283 ms
21,016 KB
testcase_23 AC 268 ms
20,676 KB
testcase_24 AC 279 ms
21,156 KB
testcase_25 AC 276 ms
21,020 KB
testcase_26 AC 272 ms
20,996 KB
testcase_27 AC 270 ms
20,804 KB
testcase_28 AC 266 ms
20,872 KB
testcase_29 AC 282 ms
21,008 KB
testcase_30 AC 29 ms
10,752 KB
testcase_31 AC 142 ms
12,756 KB
testcase_32 AC 146 ms
12,504 KB
testcase_33 AC 139 ms
21,600 KB
testcase_34 AC 29 ms
10,752 KB
testcase_35 AC 26 ms
10,496 KB
testcase_36 AC 27 ms
10,624 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

N,X,Y,Z=map(int,input().split())
A=list(map(int,input().split()))

A.sort(reverse=True)

for i in range(N):
    A[i]+=1

    if A[i]>=10000 and Z>0:
        s=min(A[i]//10000,Z)
        Z-=s
        A[i]-=s*10000

A.sort(reverse=True)

for i in range(N):
    if A[i]>0 and Z>0:
        Z-=1
        A[i]=0

for i in range(N):
    if A[i]>=5000 and Y>0:
        s=min(A[i]//5000,Y)
        Y-=s
        A[i]-=s*5000

A.sort(reverse=True)

if Y>0:
    for i in range(N):
        if A[i]>0 and Y>0:
            Y-=1
            A[i]=0

for i in range(N):
    if A[i]>0 and X>0:
        s=min((A[i]+999)//1000,X)
        X-=s
        A[i]-=s*1000

if max(A)==0:
    print("Yes")
else:
    print("No")
    
    
    

    
        
        
0