結果

問題 No.1015 おつりは要らないです
ユーザー NoneNone
提出日時 2021-05-01 08:12:27
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 136 ms / 2,000 ms
コード長 560 bytes
コンパイル時間 336 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 103,424 KB
最終ジャッジ日時 2024-07-19 11:10:39
合計ジャッジ時間 5,059 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
51,968 KB
testcase_01 AC 44 ms
51,712 KB
testcase_02 AC 47 ms
51,712 KB
testcase_03 AC 42 ms
51,840 KB
testcase_04 AC 42 ms
51,712 KB
testcase_05 AC 41 ms
51,456 KB
testcase_06 AC 41 ms
51,840 KB
testcase_07 AC 42 ms
51,456 KB
testcase_08 AC 42 ms
51,712 KB
testcase_09 AC 42 ms
51,712 KB
testcase_10 AC 134 ms
103,424 KB
testcase_11 AC 134 ms
99,200 KB
testcase_12 AC 134 ms
103,296 KB
testcase_13 AC 133 ms
99,200 KB
testcase_14 AC 136 ms
99,200 KB
testcase_15 AC 135 ms
103,296 KB
testcase_16 AC 133 ms
98,944 KB
testcase_17 AC 135 ms
99,072 KB
testcase_18 AC 135 ms
103,168 KB
testcase_19 AC 132 ms
98,944 KB
testcase_20 AC 128 ms
100,224 KB
testcase_21 AC 127 ms
99,200 KB
testcase_22 AC 126 ms
99,456 KB
testcase_23 AC 124 ms
98,304 KB
testcase_24 AC 128 ms
99,584 KB
testcase_25 AC 129 ms
99,584 KB
testcase_26 AC 128 ms
98,944 KB
testcase_27 AC 128 ms
99,072 KB
testcase_28 AC 128 ms
98,944 KB
testcase_29 AC 128 ms
99,584 KB
testcase_30 AC 42 ms
51,968 KB
testcase_31 AC 84 ms
91,776 KB
testcase_32 AC 84 ms
91,904 KB
testcase_33 AC 108 ms
102,272 KB
testcase_34 AC 41 ms
51,712 KB
testcase_35 AC 40 ms
51,712 KB
testcase_36 AC 41 ms
52,224 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,X,Y,Z=map(int, input().split())
A=list(map(int, input().split()))
A.sort(reverse=True)
B=[]
for a in A:
    z=min(a//10000,Z)
    a-=z*10000
    Z-=z
    if a>=0:
        B.append(a)
A=B
A.sort(reverse=True)
B=[]
for a in A:
    if Z>0:
        Z-=1
    else:
        y=min(a//5000,Y)
        a-=y*5000
        Y-=y
        if a>=0:
            B.append(a)
A=B
A.sort(reverse=True)
B=[]
for a in A:
    if Z>0:
        Z-=1
    elif Y>0:
        Y-=1
    else:
        x=a//1000+1
        X-=x



if X<0 or Y<0 or Z<0:
    print("No")
    exit()
print("Yes")
0