結果

問題 No.1015 おつりは要らないです
ユーザー rei60rei60
提出日時 2020-04-04 10:32:07
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 481 bytes
コンパイル時間 78 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 23,092 KB
最終ジャッジ日時 2024-07-03 07:02:16
合計ジャッジ時間 6,371 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 27 ms
10,752 KB
testcase_01 AC 26 ms
10,880 KB
testcase_02 AC 27 ms
10,752 KB
testcase_03 AC 26 ms
10,624 KB
testcase_04 WA -
testcase_05 AC 28 ms
10,624 KB
testcase_06 AC 27 ms
10,624 KB
testcase_07 AC 28 ms
10,624 KB
testcase_08 AC 27 ms
10,752 KB
testcase_09 AC 27 ms
10,624 KB
testcase_10 AC 229 ms
22,492 KB
testcase_11 AC 226 ms
22,748 KB
testcase_12 AC 213 ms
21,968 KB
testcase_13 AC 217 ms
22,512 KB
testcase_14 AC 241 ms
23,092 KB
testcase_15 AC 229 ms
22,076 KB
testcase_16 AC 217 ms
22,348 KB
testcase_17 AC 228 ms
22,712 KB
testcase_18 AC 224 ms
22,356 KB
testcase_19 AC 218 ms
22,504 KB
testcase_20 AC 188 ms
21,056 KB
testcase_21 AC 187 ms
21,096 KB
testcase_22 AC 192 ms
21,092 KB
testcase_23 AC 189 ms
20,756 KB
testcase_24 AC 189 ms
20,976 KB
testcase_25 AC 187 ms
21,100 KB
testcase_26 AC 185 ms
21,072 KB
testcase_27 AC 183 ms
20,876 KB
testcase_28 AC 190 ms
20,736 KB
testcase_29 AC 187 ms
21,132 KB
testcase_30 AC 27 ms
10,624 KB
testcase_31 AC 148 ms
13,068 KB
testcase_32 AC 145 ms
13,068 KB
testcase_33 AC 199 ms
22,204 KB
testcase_34 AC 28 ms
10,752 KB
testcase_35 AC 27 ms
10,752 KB
testcase_36 AC 27 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
B.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