結果

問題 No.1015 おつりは要らないです
ユーザー vwxyzvwxyz
提出日時 2024-07-17 02:25:41
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 404 bytes
コンパイル時間 109 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 21,536 KB
最終ジャッジ日時 2024-07-17 02:25:55
合計ジャッジ時間 9,308 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,624 KB
testcase_01 AC 30 ms
10,624 KB
testcase_02 AC 29 ms
10,752 KB
testcase_03 AC 30 ms
10,752 KB
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 AC 30 ms
10,624 KB
testcase_08 AC 29 ms
10,752 KB
testcase_09 AC 30 ms
10,880 KB
testcase_10 AC 317 ms
21,220 KB
testcase_11 AC 322 ms
21,388 KB
testcase_12 AC 296 ms
20,996 KB
testcase_13 AC 304 ms
21,232 KB
testcase_14 AC 318 ms
21,524 KB
testcase_15 AC 300 ms
20,928 KB
testcase_16 AC 303 ms
21,208 KB
testcase_17 AC 318 ms
21,404 KB
testcase_18 AC 302 ms
21,068 KB
testcase_19 AC 323 ms
21,148 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,752 KB
testcase_31 AC 253 ms
12,516 KB
testcase_32 AC 244 ms
12,516 KB
testcase_33 AC 288 ms
21,536 KB
testcase_34 WA -
testcase_35 WA -
testcase_36 AC 29 ms
10,624 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,X,Y,Z=map(int,input().split())
A=list(map(int,input().split()))
A.sort(reverse=True)
ans="Yes"
for a in A:
    a+=1
    c=min(Z,a//10000)
    Z-=c
    a-=c*10000
    c=min(Y,a//5000)
    Y-=c
    a-=c*5000
    c=min(X,a//1000)
    X-=c
    a-=c*1000
    if a:
        if X:
            X-=1
        elif Y:
            Y-=1
        elif Z:
            Z-=1
        else:
            ans="No"
print(ans)
0