結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
10,624 KB
testcase_01 AC 31 ms
10,624 KB
testcase_02 AC 30 ms
10,624 KB
testcase_03 AC 30 ms
10,752 KB
testcase_04 AC 30 ms
10,624 KB
testcase_05 WA -
testcase_06 WA -
testcase_07 AC 30 ms
10,624 KB
testcase_08 AC 30 ms
10,624 KB
testcase_09 AC 30 ms
10,624 KB
testcase_10 AC 263 ms
21,148 KB
testcase_11 AC 270 ms
21,424 KB
testcase_12 AC 256 ms
20,900 KB
testcase_13 AC 262 ms
21,272 KB
testcase_14 AC 278 ms
21,724 KB
testcase_15 AC 256 ms
21,088 KB
testcase_16 AC 265 ms
21,272 KB
testcase_17 AC 272 ms
21,592 KB
testcase_18 AC 265 ms
21,076 KB
testcase_19 AC 259 ms
21,212 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 30 ms
10,624 KB
testcase_31 AC 103 ms
12,644 KB
testcase_32 AC 104 ms
12,648 KB
testcase_33 AC 88 ms
21,444 KB
testcase_34 AC 30 ms
10,752 KB
testcase_35 WA -
testcase_36 AC 31 ms
10,624 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

N, X, Y, Z = map(int, input().split())
a = list(map(int, input().split()))

for i in range(N):
    if a[i] >= 10000:
        n = min(Z, a[i]//10000)
        a[i] -= n * 10000
        Z -= n
    if a[i] >= 5000:
        n = min(Y, a[i]//5000)
        a[i] -= n * 5000
        Y -= n
    if a[i] >= 5000:
        req = a[i] // 1000 + 1
        if req > X:
            print('No')
            exit()
        a[i] -= req * 1000
        X -= req

a.sort(reverse=True)

for i in range(N):
    if a[i] < 0:
        break
    if Z:
        Z -= 1
        continue
    if Y:
        Y -= 1
        continue
    req = a[i] // 1000 + 1
    if X >= req:
        X -= req
        continue

    print('No')
    exit()

print('Yes')
0