結果

問題 No.1015 おつりは要らないです
ユーザー takakintakakin
提出日時 2020-04-03 23:02:47
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 782 bytes
コンパイル時間 84 ms
コンパイル使用メモリ 12,928 KB
実行使用メモリ 21,600 KB
最終ジャッジ日時 2024-07-03 05:37:47
合計ジャッジ時間 6,402 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
10,752 KB
testcase_01 AC 31 ms
10,752 KB
testcase_02 AC 31 ms
10,752 KB
testcase_03 AC 31 ms
10,752 KB
testcase_04 WA -
testcase_05 AC 31 ms
10,880 KB
testcase_06 AC 32 ms
10,880 KB
testcase_07 AC 31 ms
10,880 KB
testcase_08 AC 31 ms
10,752 KB
testcase_09 AC 31 ms
10,752 KB
testcase_10 AC 231 ms
21,156 KB
testcase_11 AC 237 ms
21,584 KB
testcase_12 AC 222 ms
20,784 KB
testcase_13 AC 229 ms
21,168 KB
testcase_14 AC 239 ms
21,596 KB
testcase_15 AC 225 ms
20,972 KB
testcase_16 AC 228 ms
21,152 KB
testcase_17 AC 238 ms
21,468 KB
testcase_18 AC 226 ms
21,240 KB
testcase_19 AC 229 ms
21,084 KB
testcase_20 AC 193 ms
21,240 KB
testcase_21 AC 188 ms
21,152 KB
testcase_22 AC 190 ms
21,024 KB
testcase_23 AC 181 ms
20,684 KB
testcase_24 AC 190 ms
21,160 KB
testcase_25 AC 188 ms
21,156 KB
testcase_26 AC 186 ms
20,876 KB
testcase_27 AC 189 ms
20,676 KB
testcase_28 AC 187 ms
20,792 KB
testcase_29 AC 191 ms
21,060 KB
testcase_30 AC 31 ms
10,752 KB
testcase_31 AC 138 ms
12,628 KB
testcase_32 AC 141 ms
12,672 KB
testcase_33 AC 107 ms
21,600 KB
testcase_34 AC 30 ms
10,752 KB
testcase_35 AC 31 ms
10,752 KB
testcase_36 AC 30 ms
10,624 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input=lambda: sys.stdin.readline().rstrip()
n,x,y,z=map(int,input().split())
A=[int(i) for i in input().split()]
t=0
chk=True
for i in range(n):
  t+=A[i]//10000
  A[i]%=10000
if z>=t:
  z-=t
else:
  t-=z
  z=0
  if y>=2*t:
    y-=2*t
  else:
    t=t-(y//2)
    y%=2
    if x>=5 and y==1 and t>=1:
      x-=5
      y-=1
      t-=1

    if x<=t*10:
      chk=False
    else:
      x-=t*10
if not chk:
  print("No")
else:
  if z>=n:
    print("Yes")
  else:
    A.sort()
    A=A[:n-z]
    import heapq
    heapq.heapify(A)
    while A:
      a=heapq.heappop(A)
      aa=a//1000+1
      if aa>x+5*y:
        print("No")
        break
      if x>=aa:
        x-=aa
      else:
        y-=1
        if aa>5:
          heapq.heappush(A,a-5000)
    else:
      print("Yes")




0