結果

問題 No.1015 おつりは要らないです
ユーザー いたいた
提出日時 2025-01-08 01:05:19
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 630 bytes
コンパイル時間 326 ms
コンパイル使用メモリ 82,404 KB
実行使用メモリ 97,076 KB
最終ジャッジ日時 2025-01-08 01:05:28
合計ジャッジ時間 7,045 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,700 KB
testcase_01 AC 35 ms
52,580 KB
testcase_02 AC 38 ms
54,556 KB
testcase_03 AC 37 ms
53,412 KB
testcase_04 AC 35 ms
52,704 KB
testcase_05 AC 34 ms
53,112 KB
testcase_06 AC 35 ms
52,536 KB
testcase_07 WA -
testcase_08 WA -
testcase_09 AC 44 ms
53,380 KB
testcase_10 AC 193 ms
90,532 KB
testcase_11 AC 200 ms
90,660 KB
testcase_12 AC 198 ms
90,496 KB
testcase_13 AC 198 ms
90,596 KB
testcase_14 AC 205 ms
90,748 KB
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 211 ms
90,416 KB
testcase_21 AC 238 ms
90,452 KB
testcase_22 AC 219 ms
90,572 KB
testcase_23 AC 200 ms
90,508 KB
testcase_24 AC 211 ms
90,668 KB
testcase_25 AC 207 ms
90,244 KB
testcase_26 AC 209 ms
90,416 KB
testcase_27 AC 233 ms
90,360 KB
testcase_28 AC 207 ms
90,452 KB
testcase_29 AC 215 ms
90,656 KB
testcase_30 AC 38 ms
53,188 KB
testcase_31 AC 102 ms
94,668 KB
testcase_32 AC 103 ms
94,772 KB
testcase_33 AC 144 ms
97,076 KB
testcase_34 AC 40 ms
52,824 KB
testcase_35 AC 37 ms
53,172 KB
testcase_36 AC 37 ms
53,032 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import heapq
N,X,Y,Z=map(int,input().split())
A=list(map(int,input().split()))

q=[]
heapq.heapify(q)
for i in range(N):
  heapq.heappush(q,-A[i])
while q and Z:
  n=-heapq.heappop(q)
  if n>=10000:
    Z-=n//10000
    if Z<0:
      n+=-Z*10000
      Z=0
    n%=10000
    heapq.heappush(q,-n)
  else:
    n-=10000
    Z-=1
while q and Y:
  n=-heapq.heappop(q)
  if n>=5000:
    Y-=n//5000
    if Y<0:
      n+=-Y*5000
      Y=0
    n%=5000
    heapq.heappush(q,-n)
  else:
    n-=5000
    Y-=1
while q:
  n=-heapq.heappop(q)
  X-=n//1000
  n//=1000
  if n==0:
    X-=1
if X>-1 and Y>-1 and Z>-1:
  print("Yes")
else:
  print("No")
0