結果

問題 No.1015 おつりは要らないです
ユーザー w0mbatw0mbat
提出日時 2020-04-03 22:59:28
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 755 bytes
コンパイル時間 239 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 93,140 KB
最終ジャッジ日時 2024-07-03 05:32:45
合計ジャッジ時間 4,281 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,096 KB
testcase_01 AC 38 ms
51,712 KB
testcase_02 AC 38 ms
51,712 KB
testcase_03 AC 40 ms
52,184 KB
testcase_04 WA -
testcase_05 WA -
testcase_06 AC 37 ms
51,968 KB
testcase_07 AC 37 ms
52,352 KB
testcase_08 AC 38 ms
52,352 KB
testcase_09 AC 38 ms
51,968 KB
testcase_10 AC 94 ms
93,056 KB
testcase_11 AC 94 ms
92,648 KB
testcase_12 AC 92 ms
92,416 KB
testcase_13 AC 92 ms
92,160 KB
testcase_14 AC 93 ms
92,840 KB
testcase_15 AC 93 ms
92,648 KB
testcase_16 AC 92 ms
92,672 KB
testcase_17 AC 94 ms
92,412 KB
testcase_18 AC 92 ms
92,800 KB
testcase_19 AC 91 ms
92,160 KB
testcase_20 AC 92 ms
92,244 KB
testcase_21 AC 89 ms
92,416 KB
testcase_22 AC 86 ms
90,880 KB
testcase_23 AC 89 ms
91,028 KB
testcase_24 AC 86 ms
91,192 KB
testcase_25 AC 88 ms
90,752 KB
testcase_26 AC 91 ms
92,544 KB
testcase_27 AC 96 ms
92,548 KB
testcase_28 AC 96 ms
90,496 KB
testcase_29 AC 97 ms
91,136 KB
testcase_30 AC 43 ms
52,480 KB
testcase_31 AC 84 ms
86,400 KB
testcase_32 AC 81 ms
86,400 KB
testcase_33 AC 90 ms
93,140 KB
testcase_34 WA -
testcase_35 AC 37 ms
52,480 KB
testcase_36 AC 38 ms
51,712 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,X,Y,Z=map(int, input().split())
*A,=map(int, input().split())

ans = True
for a in A:
    d = a // 10000
    d = min(Z,d)
    Z -= d
    m = a - d * 10000

    d = m // 5000
    d = min(Y,d)
    Y -= d
    m -= d * 5000

    if m > 5000 and Z > 0:
        m -= 10000
        Z -= 1
    if m > 4000 and Y > 0:
        m -= 5000
        Y -= 1

    if m >= 0:
        d = m//1000 + 1
        if d <= X:
            X -= d
            m -= d * 1000

    if m >= 0 and Y > 0:
        d = m//5000 + 1
        if d <= Y:
            Y -= d
            m -= d * 5000
    if m >= 0 and Z > 0:
        d = m//10000 + 1
        if d <= Z:
            Z -= d
            m -= d * 10000
    if m >= 0:
        ans = False
        break
print('Yes' if ans else 'No')
0