結果

問題 No.1015 おつりは要らないです
ユーザー ptotqptotq
提出日時 2020-04-03 22:02:31
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 327 ms / 2,000 ms
コード長 831 bytes
コンパイル時間 110 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 21,632 KB
最終ジャッジ日時 2024-11-17 23:10:58
合計ジャッジ時間 7,884 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,752 KB
testcase_01 AC 27 ms
10,624 KB
testcase_02 AC 27 ms
10,624 KB
testcase_03 AC 27 ms
10,496 KB
testcase_04 AC 27 ms
10,752 KB
testcase_05 AC 34 ms
10,496 KB
testcase_06 AC 28 ms
10,752 KB
testcase_07 AC 28 ms
10,752 KB
testcase_08 AC 29 ms
10,624 KB
testcase_09 AC 28 ms
10,752 KB
testcase_10 AC 307 ms
21,316 KB
testcase_11 AC 327 ms
21,448 KB
testcase_12 AC 304 ms
20,936 KB
testcase_13 AC 318 ms
21,144 KB
testcase_14 AC 322 ms
21,632 KB
testcase_15 AC 306 ms
20,996 KB
testcase_16 AC 316 ms
21,308 KB
testcase_17 AC 322 ms
21,508 KB
testcase_18 AC 323 ms
21,236 KB
testcase_19 AC 311 ms
21,120 KB
testcase_20 AC 233 ms
20,976 KB
testcase_21 AC 223 ms
20,764 KB
testcase_22 AC 230 ms
20,888 KB
testcase_23 AC 221 ms
20,676 KB
testcase_24 AC 241 ms
21,032 KB
testcase_25 AC 239 ms
20,888 KB
testcase_26 AC 238 ms
21,000 KB
testcase_27 AC 231 ms
20,672 KB
testcase_28 AC 226 ms
20,748 KB
testcase_29 AC 236 ms
21,136 KB
testcase_30 AC 27 ms
10,752 KB
testcase_31 AC 168 ms
15,744 KB
testcase_32 AC 165 ms
15,744 KB
testcase_33 AC 327 ms
21,600 KB
testcase_34 AC 30 ms
10,624 KB
testcase_35 AC 27 ms
10,624 KB
testcase_36 AC 27 ms
10,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

N, X, Y, Z = map(int, input().split())
a = list(map(lambda x: int(x) // 1000 * 1000 + 1000, input().split()))

for i in range(N):
    if a[i] >= 10000:
        n = min(Z, a[i]//10000)
        a[i] -= n * 10000
        Z -= n

a.sort(reverse=True)

for i in range(N):
    if a[i] <= 0:
        break
    if a[i] >= 5000 and Z:
        a[i] -= 10000
        Z -= 1
        continue
    if a[i] >= 5000:
        n = min(Y, a[i]//5000)
        a[i] -= n * 5000
        Y -= n

a.sort(reverse=True)

for i in range(N):
    if a[i] <= 0:
        break
    if a[i] > 0 and Z:
        a[i] -= 10000
        Z -= 1
    if a[i] > 0 and Y:
        a[i] -= 5000
        Y -= 1
    if a[i] > 0:
        n = min(a[i] // 1000, X)
        a[i] -= 1000*n
        X -= n

print('Yes' if max(a) <= 0 else 'No')
0