結果

問題 No.1015 おつりは要らないです
ユーザー neterukunneterukun
提出日時 2020-04-03 21:50:08
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 475 bytes
コンパイル時間 156 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 90,228 KB
最終ジャッジ日時 2024-07-03 02:10:13
合計ジャッジ時間 3,713 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
51,968 KB
testcase_01 AC 36 ms
51,712 KB
testcase_02 AC 35 ms
51,456 KB
testcase_03 AC 35 ms
51,968 KB
testcase_04 AC 35 ms
51,968 KB
testcase_05 WA -
testcase_06 WA -
testcase_07 AC 36 ms
51,584 KB
testcase_08 AC 35 ms
51,584 KB
testcase_09 AC 35 ms
51,840 KB
testcase_10 AC 75 ms
89,344 KB
testcase_11 AC 82 ms
90,112 KB
testcase_12 AC 79 ms
89,392 KB
testcase_13 AC 78 ms
89,984 KB
testcase_14 AC 77 ms
90,228 KB
testcase_15 AC 76 ms
89,344 KB
testcase_16 AC 77 ms
89,216 KB
testcase_17 AC 77 ms
89,856 KB
testcase_18 AC 79 ms
89,216 KB
testcase_19 AC 76 ms
89,216 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 35 ms
51,584 KB
testcase_31 AC 60 ms
80,384 KB
testcase_32 AC 59 ms
81,152 KB
testcase_33 AC 73 ms
90,008 KB
testcase_34 AC 36 ms
51,968 KB
testcase_35 AC 35 ms
51,456 KB
testcase_36 RE -
権限があれば一括ダウンロードができます

ソースコード

diff #

n, x, y, z = map(int, input().split())
a = list(map(int, input().split()))

for i in range(n):
    res = -((-a[i] - 1) // 1000)
    y10 = res // 10
    res -= min(y10, z) * 10
    z -= min(y10, z)
    
    y5 = res // 5
    res -= min(y5, y) * 5
    y -= min(y5, y)
    
    a[i] = res

a = sorted(a, reverse=True)
for i in range(z):
    a[i] = 0
z = 0

a = sorted(a, reverse=True)
for i in range(y):
    a[i] = 0
y = 0

if sum(a) <= x:
    print("Yes")
else:
    print("No")
0