結果

問題 No.1015 おつりは要らないです
ユーザー titiatitia
提出日時 2020-04-03 21:41:14
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 836 bytes
コンパイル時間 80 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 21,744 KB
最終ジャッジ日時 2024-07-03 01:50:14
合計ジャッジ時間 7,108 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
10,624 KB
testcase_01 AC 26 ms
10,624 KB
testcase_02 AC 33 ms
10,752 KB
testcase_03 AC 30 ms
10,880 KB
testcase_04 AC 27 ms
10,624 KB
testcase_05 AC 27 ms
10,624 KB
testcase_06 AC 27 ms
10,752 KB
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 AC 276 ms
21,300 KB
testcase_11 AC 292 ms
21,464 KB
testcase_12 AC 273 ms
20,800 KB
testcase_13 AC 265 ms
21,184 KB
testcase_14 AC 279 ms
21,744 KB
testcase_15 AC 262 ms
20,988 KB
testcase_16 AC 263 ms
21,296 KB
testcase_17 AC 272 ms
21,620 KB
testcase_18 AC 270 ms
21,252 KB
testcase_19 AC 279 ms
21,236 KB
testcase_20 AC 228 ms
21,120 KB
testcase_21 AC 222 ms
21,160 KB
testcase_22 AC 238 ms
21,032 KB
testcase_23 AC 227 ms
20,692 KB
testcase_24 AC 225 ms
21,176 KB
testcase_25 AC 232 ms
21,032 KB
testcase_26 AC 226 ms
21,140 KB
testcase_27 AC 228 ms
20,812 KB
testcase_28 AC 235 ms
20,864 KB
testcase_29 AC 240 ms
21,124 KB
testcase_30 AC 28 ms
10,624 KB
testcase_31 AC 132 ms
12,776 KB
testcase_32 AC 129 ms
12,764 KB
testcase_33 AC 119 ms
21,612 KB
testcase_34 AC 28 ms
10,624 KB
testcase_35 AC 28 ms
10,752 KB
testcase_36 AC 28 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()))

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

if Z==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)

#print(A,X,Y,Z)

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

#print(A,X,Y,Z)

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

#print(A,X,Y,Z)

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