結果

問題 No.1015 おつりは要らないです
ユーザー w0mbatw0mbat
提出日時 2020-04-03 23:18:07
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 656 bytes
コンパイル時間 179 ms
コンパイル使用メモリ 81,792 KB
実行使用メモリ 93,004 KB
最終ジャッジ日時 2024-07-03 06:13:18
合計ジャッジ時間 4,374 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
51,840 KB
testcase_01 AC 41 ms
51,840 KB
testcase_02 AC 41 ms
52,224 KB
testcase_03 AC 41 ms
51,840 KB
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 AC 40 ms
51,840 KB
testcase_08 AC 41 ms
52,352 KB
testcase_09 AC 40 ms
51,840 KB
testcase_10 AC 99 ms
92,288 KB
testcase_11 AC 102 ms
92,416 KB
testcase_12 AC 100 ms
92,368 KB
testcase_13 AC 102 ms
92,672 KB
testcase_14 AC 101 ms
92,288 KB
testcase_15 AC 103 ms
91,776 KB
testcase_16 AC 101 ms
92,672 KB
testcase_17 AC 101 ms
92,416 KB
testcase_18 AC 100 ms
92,160 KB
testcase_19 AC 102 ms
92,416 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 41 ms
52,480 KB
testcase_31 AC 87 ms
86,784 KB
testcase_32 AC 88 ms
86,912 KB
testcase_33 AC 101 ms
93,004 KB
testcase_34 AC 41 ms
52,608 KB
testcase_35 AC 40 ms
51,968 KB
testcase_36 AC 41 ms
52,096 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

ans = True
for i in range(N):
    d = min(Z, A[i] // 10)
    Z -= d
    A[i] -= 10 * d
for i in range(N):
    d = min(Y, A[i] // 5)
    Y -= d
    A[i] -= 5 * d
for a in A:
    if a > 5 and Z > 0:
        Z -= 1
        a -= 10
    if a > 1 and Y > 0:
        Y -= 1
        a -= 5
    if a > 0:
        d = min(X,a)
        X -= d
        a -= d
    if a > 0:
        d = min(Y,1+a//5)
        Y -= d
        a -= d*5
    if a > 0:
        d = min(Z,1+a//10)
        Z -= d
        a -= d*10
    if a > 0:
        ans = False
        break

print('Yes' if ans else 'No')
0