結果

問題 No.1015 おつりは要らないです
ユーザー いたいた
提出日時 2025-01-08 00:53:15
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 632 bytes
コンパイル時間 1,084 ms
コンパイル使用メモリ 81,664 KB
実行使用メモリ 97,228 KB
最終ジャッジ日時 2025-01-08 00:53:26
合計ジャッジ時間 10,054 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 47 ms
52,480 KB
testcase_01 AC 48 ms
52,224 KB
testcase_02 AC 46 ms
52,480 KB
testcase_03 AC 46 ms
52,096 KB
testcase_04 AC 45 ms
52,480 KB
testcase_05 AC 45 ms
52,352 KB
testcase_06 AC 47 ms
52,608 KB
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 AC 242 ms
90,732 KB
testcase_16 AC 241 ms
90,368 KB
testcase_17 AC 246 ms
90,496 KB
testcase_18 AC 265 ms
90,624 KB
testcase_19 AC 242 ms
90,624 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 44 ms
52,352 KB
testcase_31 AC 131 ms
94,796 KB
testcase_32 AC 131 ms
94,720 KB
testcase_33 AC 182 ms
97,228 KB
testcase_34 AC 51 ms
52,480 KB
testcase_35 AC 46 ms
52,352 KB
testcase_36 AC 45 ms
52,480 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