結果

問題 No.1015 おつりは要らないです
ユーザー 👑 rin204rin204
提出日時 2022-03-21 20:57:43
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 93 ms / 2,000 ms
コード長 398 bytes
コンパイル時間 251 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 91,372 KB
最終ジャッジ日時 2024-10-09 11:36:35
合計ジャッジ時間 4,141 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
52,224 KB
testcase_01 AC 38 ms
51,712 KB
testcase_02 AC 37 ms
52,352 KB
testcase_03 AC 36 ms
52,352 KB
testcase_04 AC 39 ms
51,456 KB
testcase_05 AC 37 ms
51,712 KB
testcase_06 AC 37 ms
51,968 KB
testcase_07 AC 37 ms
51,968 KB
testcase_08 AC 37 ms
51,840 KB
testcase_09 AC 38 ms
52,352 KB
testcase_10 AC 93 ms
90,464 KB
testcase_11 AC 93 ms
90,368 KB
testcase_12 AC 89 ms
89,600 KB
testcase_13 AC 90 ms
90,368 KB
testcase_14 AC 93 ms
91,372 KB
testcase_15 AC 91 ms
90,496 KB
testcase_16 AC 90 ms
90,112 KB
testcase_17 AC 92 ms
91,136 KB
testcase_18 AC 91 ms
90,112 KB
testcase_19 AC 90 ms
89,856 KB
testcase_20 AC 79 ms
86,400 KB
testcase_21 AC 75 ms
86,144 KB
testcase_22 AC 76 ms
86,656 KB
testcase_23 AC 75 ms
86,016 KB
testcase_24 AC 76 ms
86,656 KB
testcase_25 AC 76 ms
86,016 KB
testcase_26 AC 76 ms
86,016 KB
testcase_27 AC 75 ms
86,656 KB
testcase_28 AC 77 ms
86,016 KB
testcase_29 AC 75 ms
87,040 KB
testcase_30 AC 37 ms
52,096 KB
testcase_31 AC 64 ms
80,640 KB
testcase_32 AC 64 ms
81,152 KB
testcase_33 AC 77 ms
89,600 KB
testcase_34 AC 37 ms
51,712 KB
testcase_35 AC 37 ms
51,840 KB
testcase_36 AC 38 ms
51,456 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n, x, y, z = map(int, input().split())
A = list(map(int, input().split()))
A = [a // 1000 + 1 for a in A]

for i in range(n):
    mi = min(z, A[i] // 10)
    A[i] -= mi * 10
    z -= mi
A.sort(reverse = True)
A = A[z:]
n = len(A)
for i in range(n):
    mi = min(y, A[i] // 5)
    A[i] -= mi * 5
    y -= mi
A.sort(reverse = True)
tot = sum(A[y:])
if tot <= x:
    print("Yes")
else:
    print("No")
0