結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 26 ms
10,752 KB
testcase_01 AC 27 ms
10,752 KB
testcase_02 AC 27 ms
10,880 KB
testcase_03 AC 29 ms
10,752 KB
testcase_04 WA -
testcase_05 AC 29 ms
10,752 KB
testcase_06 AC 32 ms
10,880 KB
testcase_07 AC 29 ms
10,752 KB
testcase_08 AC 29 ms
10,880 KB
testcase_09 AC 29 ms
10,880 KB
testcase_10 AC 217 ms
21,156 KB
testcase_11 AC 208 ms
21,452 KB
testcase_12 AC 203 ms
20,656 KB
testcase_13 AC 204 ms
21,040 KB
testcase_14 AC 211 ms
21,456 KB
testcase_15 AC 199 ms
20,976 KB
testcase_16 AC 205 ms
21,020 KB
testcase_17 AC 223 ms
21,592 KB
testcase_18 AC 212 ms
21,364 KB
testcase_19 AC 204 ms
21,092 KB
testcase_20 AC 172 ms
21,236 KB
testcase_21 AC 168 ms
21,148 KB
testcase_22 AC 180 ms
21,020 KB
testcase_23 AC 173 ms
20,812 KB
testcase_24 AC 174 ms
21,036 KB
testcase_25 AC 190 ms
21,152 KB
testcase_26 AC 174 ms
21,000 KB
testcase_27 AC 179 ms
20,808 KB
testcase_28 AC 168 ms
20,660 KB
testcase_29 AC 177 ms
21,056 KB
testcase_30 AC 30 ms
10,752 KB
testcase_31 AC 132 ms
12,760 KB
testcase_32 AC 131 ms
12,504 KB
testcase_33 AC 95 ms
21,600 KB
testcase_34 AC 28 ms
11,008 KB
testcase_35 AC 27 ms
10,880 KB
testcase_36 AC 27 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*10-(y//2)*10
    y%=2
    if t>x:
      chk=False
    else:
      x-=t
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)
      if a==0:
        aa=1
      else:
        aa=(a-1)//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)
      if not A:
        print("Yes")
        break




0