結果

問題 No.1015 おつりは要らないです
ユーザー もりをもりを
提出日時 2020-04-03 21:38:36
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 1,057 bytes
コンパイル時間 175 ms
コンパイル使用メモリ 81,536 KB
実行使用メモリ 96,896 KB
最終ジャッジ日時 2024-07-03 01:41:10
合計ジャッジ時間 4,305 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
51,968 KB
testcase_01 AC 42 ms
51,968 KB
testcase_02 AC 43 ms
51,840 KB
testcase_03 AC 41 ms
51,840 KB
testcase_04 WA -
testcase_05 WA -
testcase_06 AC 42 ms
51,456 KB
testcase_07 AC 41 ms
51,840 KB
testcase_08 AC 41 ms
51,968 KB
testcase_09 AC 41 ms
51,712 KB
testcase_10 AC 93 ms
93,952 KB
testcase_11 AC 93 ms
94,592 KB
testcase_12 AC 92 ms
93,952 KB
testcase_13 AC 92 ms
94,464 KB
testcase_14 AC 94 ms
94,976 KB
testcase_15 AC 90 ms
93,824 KB
testcase_16 AC 92 ms
94,336 KB
testcase_17 AC 92 ms
94,464 KB
testcase_18 AC 92 ms
93,952 KB
testcase_19 AC 93 ms
93,696 KB
testcase_20 AC 106 ms
96,384 KB
testcase_21 AC 103 ms
96,512 KB
testcase_22 AC 105 ms
96,256 KB
testcase_23 AC 104 ms
96,768 KB
testcase_24 AC 104 ms
96,384 KB
testcase_25 AC 105 ms
96,384 KB
testcase_26 AC 105 ms
96,640 KB
testcase_27 AC 103 ms
96,896 KB
testcase_28 AC 105 ms
96,384 KB
testcase_29 AC 106 ms
96,384 KB
testcase_30 AC 42 ms
51,968 KB
testcase_31 AC 89 ms
89,856 KB
testcase_32 AC 90 ms
89,472 KB
testcase_33 AC 92 ms
94,720 KB
testcase_34 WA -
testcase_35 AC 42 ms
51,840 KB
testcase_36 AC 42 ms
51,968 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,x,y,z = map(int,input().split())
a = list(map(lambda x:int(x)+1,input().split()))
b = []
for i in a:
    p,q = divmod(i, 1000)
    if q:
        p += 1
    b.append(p)

for i in b:
    yukichi = min(i // 10, z)
    z -= yukichi
    i -= yukichi * 10
    higuchi = min(i // 5, y)
    y -= higuchi
    i -= higuchi * 5
    if i > x:
        md = i % 10
        if md >= 5:
            if y > 0 and x >= md - 5:
                y -= 1
                x -= md - 5
            elif z > 0:
                z -= 1
            elif y > 1:
                y -= 2
            else:
                print('No')
                exit(0)
        else:
            if x >= md:
                x -= md
            elif y > 0:
                y -= 1
            elif z > 0:
                z -= 1
            else:
                print('No')
                exit(0)
        mm = i // 10
        ok = min(mm, z)
        z -= ok
        mm -= ok
        if 2 * mm > y:
            print('No')
            exit(0)
        y -= mm // 2
    else:
        x -= i

print('Yes')
0