結果

問題 No.1015 おつりは要らないです
ユーザー 👑 rin204rin204
提出日時 2022-03-21 20:53:33
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 366 bytes
コンパイル時間 505 ms
コンパイル使用メモリ 81,876 KB
実行使用メモリ 89,984 KB
最終ジャッジ日時 2024-10-09 11:31:09
合計ジャッジ時間 5,219 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
51,840 KB
testcase_01 AC 38 ms
51,840 KB
testcase_02 AC 39 ms
51,584 KB
testcase_03 AC 39 ms
51,712 KB
testcase_04 AC 40 ms
51,712 KB
testcase_05 WA -
testcase_06 WA -
testcase_07 AC 38 ms
51,712 KB
testcase_08 AC 40 ms
51,840 KB
testcase_09 AC 40 ms
51,840 KB
testcase_10 AC 89 ms
88,576 KB
testcase_11 AC 89 ms
88,832 KB
testcase_12 AC 90 ms
88,192 KB
testcase_13 AC 95 ms
88,704 KB
testcase_14 AC 90 ms
89,216 KB
testcase_15 AC 91 ms
88,448 KB
testcase_16 AC 89 ms
88,704 KB
testcase_17 AC 88 ms
89,216 KB
testcase_18 AC 89 ms
88,832 KB
testcase_19 AC 87 ms
88,320 KB
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 AC 39 ms
52,224 KB
testcase_31 AC 68 ms
80,128 KB
testcase_32 AC 68 ms
79,872 KB
testcase_33 AC 82 ms
89,984 KB
testcase_34 AC 39 ms
52,352 KB
testcase_35 AC 39 ms
51,840 KB
testcase_36 AC 41 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
    
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+z:])
if tot <= x:
    print("Yes")
else:
    print("No")
0