結果

問題 No.1015 おつりは要らないです
ユーザー NoneNone
提出日時 2021-05-01 07:53:47
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 492 bytes
コンパイル時間 158 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 88,576 KB
最終ジャッジ日時 2024-07-19 10:48:35
合計ジャッジ時間 3,938 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,096 KB
testcase_01 AC 41 ms
51,840 KB
testcase_02 AC 39 ms
51,712 KB
testcase_03 AC 35 ms
51,328 KB
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 AC 33 ms
51,584 KB
testcase_08 AC 34 ms
51,584 KB
testcase_09 AC 34 ms
51,712 KB
testcase_10 AC 90 ms
87,552 KB
testcase_11 AC 91 ms
88,576 KB
testcase_12 AC 90 ms
86,912 KB
testcase_13 AC 91 ms
87,936 KB
testcase_14 AC 91 ms
88,192 KB
testcase_15 AC 88 ms
87,552 KB
testcase_16 AC 88 ms
87,808 KB
testcase_17 AC 89 ms
88,064 KB
testcase_18 AC 92 ms
87,552 KB
testcase_19 AC 90 ms
88,064 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 36 ms
51,328 KB
testcase_31 AC 65 ms
79,488 KB
testcase_32 AC 65 ms
80,256 KB
testcase_33 AC 72 ms
86,912 KB
testcase_34 WA -
testcase_35 WA -
testcase_36 AC 36 ms
52,096 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,X,Y,Z=map(int, input().split())
A=list(map(int, input().split()))
A.sort(reverse=True)
for a in A:
    if X<0 or Y<0 or Z<0:
        print("No")
        exit()
    z=min(a//10000,Z)
    a-=z*10000
    Z-=z
    if a<0:
        continue
    if Y==X==0:
        Z-=1
        continue
    y=min(a//5000,Y)
    a-=y*5000
    Y-=y
    if a<0:
        continue
    if X==0:
        Y-=1
        continue
    x=(a-1)//1000 + 1
    X-=x

if X<0 or Y<0 or Z<0:
    print("No")
    exit()
print("Yes")
0