結果

問題 No.1015 おつりは要らないです
ユーザー ゼットゼット
提出日時 2023-10-08 19:43:13
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 833 bytes
コンパイル時間 310 ms
コンパイル使用メモリ 82,164 KB
実行使用メモリ 88,112 KB
最終ジャッジ日時 2024-07-26 18:11:09
合計ジャッジ時間 3,724 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
53,288 KB
testcase_01 AC 37 ms
53,384 KB
testcase_02 AC 37 ms
52,532 KB
testcase_03 AC 37 ms
53,356 KB
testcase_04 AC 38 ms
53,144 KB
testcase_05 AC 37 ms
53,548 KB
testcase_06 AC 38 ms
52,528 KB
testcase_07 AC 38 ms
53,800 KB
testcase_08 AC 37 ms
51,996 KB
testcase_09 AC 39 ms
52,928 KB
testcase_10 AC 73 ms
87,724 KB
testcase_11 AC 74 ms
86,716 KB
testcase_12 AC 72 ms
87,348 KB
testcase_13 AC 72 ms
86,224 KB
testcase_14 AC 73 ms
88,100 KB
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 65 ms
83,804 KB
testcase_21 AC 64 ms
83,272 KB
testcase_22 AC 65 ms
83,376 KB
testcase_23 AC 64 ms
82,604 KB
testcase_24 AC 64 ms
83,968 KB
testcase_25 AC 64 ms
83,416 KB
testcase_26 AC 65 ms
83,292 KB
testcase_27 AC 63 ms
83,100 KB
testcase_28 AC 64 ms
82,588 KB
testcase_29 AC 64 ms
84,380 KB
testcase_30 AC 37 ms
52,944 KB
testcase_31 AC 59 ms
80,128 KB
testcase_32 AC 58 ms
78,328 KB
testcase_33 AC 70 ms
86,724 KB
testcase_34 AC 37 ms
53,876 KB
testcase_35 AC 37 ms
53,076 KB
testcase_36 AC 37 ms
53,204 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,x,y,z=map(int,input().split())
A=list(map(int,input().split()))
v=[0]*10
for i in range(N):
  n=A[i]
  n+=1000
  h=n//(10000)
  if z>=h:
    z-=h
  else:
    h-=z
    z=0
    if y>=2*h:
      y-=2*h
    else:
      cost=10000*h
      cost-=5000*y
      if 1000*x>=cost:
        x-=cost//(1000)
      else:
        print('No')
        exit()
  t=(A[i]+1000)%(10000)
  v[t//(1000)]+=1
for i in range(9,0,-1):
  if z>=v[i]:
    z-=v[i]
    v[i]=0
  else:
    v[i]-=z
    z=0
for i in range(9,0,-1):
  if y>=v[i]:
    if i>=5:
      v[i-5]+=v[i]
      y-=v[i]
      v[i]=0
    else:
      y-=v[i]
      v[i]=0
  else:
    if i>=5:
      v[i-5]+=y
      v[i]-=y
      y=0
    else:
      v[i]-=y
      y=0
for i in range(9,0,-1):
  if x>=i*v[i]:
    x-=i*v[i]
    v[i]=0
v[0]=0
if sum(v)==0:
  print('Yes')
else:
  print('No')
  
      
0