結果

問題 No.1015 おつりは要らないです
ユーザー rei60rei60
提出日時 2020-04-04 10:37:35
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 220 ms / 2,000 ms
コード長 481 bytes
コンパイル時間 311 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 22,952 KB
最終ジャッジ日時 2024-11-18 05:44:59
合計ジャッジ時間 6,137 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 25 ms
10,752 KB
testcase_01 AC 24 ms
10,752 KB
testcase_02 AC 25 ms
10,752 KB
testcase_03 AC 25 ms
10,752 KB
testcase_04 AC 25 ms
10,752 KB
testcase_05 AC 25 ms
10,752 KB
testcase_06 AC 28 ms
10,752 KB
testcase_07 AC 25 ms
10,752 KB
testcase_08 AC 24 ms
10,752 KB
testcase_09 AC 24 ms
10,752 KB
testcase_10 AC 204 ms
22,424 KB
testcase_11 AC 219 ms
22,748 KB
testcase_12 AC 197 ms
21,980 KB
testcase_13 AC 204 ms
22,440 KB
testcase_14 AC 211 ms
22,952 KB
testcase_15 AC 200 ms
22,076 KB
testcase_16 AC 212 ms
22,476 KB
testcase_17 AC 220 ms
22,772 KB
testcase_18 AC 209 ms
22,544 KB
testcase_19 AC 202 ms
22,380 KB
testcase_20 AC 194 ms
21,184 KB
testcase_21 AC 184 ms
21,220 KB
testcase_22 AC 176 ms
21,092 KB
testcase_23 AC 175 ms
20,880 KB
testcase_24 AC 177 ms
21,104 KB
testcase_25 AC 174 ms
21,104 KB
testcase_26 AC 170 ms
20,948 KB
testcase_27 AC 167 ms
20,748 KB
testcase_28 AC 174 ms
20,732 KB
testcase_29 AC 170 ms
21,260 KB
testcase_30 AC 25 ms
10,752 KB
testcase_31 AC 136 ms
12,944 KB
testcase_32 AC 138 ms
13,076 KB
testcase_33 AC 195 ms
22,448 KB
testcase_34 AC 24 ms
10,752 KB
testcase_35 AC 25 ms
10,752 KB
testcase_36 AC 24 ms
10,624 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N, X, Y, Z = map(int,input().split())
A = list(map(int,input().split())) 
B = []
C = []
for i in A:   
    temp = min(i//10000, Z)
    B.append(i - temp*10000)
    Z -= temp
B.sort(reverse = True)

if Z >= 0:
        B = B[Z:]

for i in B:   
    temp = min(i//5000, Y)
    C.append(i - temp*5000)
    Y -= temp
C.sort(reverse = True)

if Y >= 0:
        C = C[Y:]

for i in C:
    X -= (i//1000 + 1)

if X >= 0 and Y >= 0 and Z >= 0:
    print("Yes")
else:
    print("No")
       
0