結果

問題 No.1015 おつりは要らないです
ユーザー ゼットゼット
提出日時 2023-10-08 19:49:48
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 73 ms / 2,000 ms
コード長 843 bytes
コンパイル時間 445 ms
コンパイル使用メモリ 82,444 KB
実行使用メモリ 87,752 KB
最終ジャッジ日時 2024-07-26 18:11:13
合計ジャッジ時間 3,565 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,400 KB
testcase_01 AC 38 ms
53,068 KB
testcase_02 AC 37 ms
52,272 KB
testcase_03 AC 36 ms
52,692 KB
testcase_04 AC 38 ms
53,620 KB
testcase_05 AC 36 ms
52,744 KB
testcase_06 AC 37 ms
54,040 KB
testcase_07 AC 37 ms
53,500 KB
testcase_08 AC 37 ms
52,852 KB
testcase_09 AC 38 ms
52,480 KB
testcase_10 AC 73 ms
87,128 KB
testcase_11 AC 73 ms
86,928 KB
testcase_12 AC 72 ms
86,220 KB
testcase_13 AC 72 ms
86,148 KB
testcase_14 AC 73 ms
87,588 KB
testcase_15 AC 72 ms
86,596 KB
testcase_16 AC 73 ms
87,752 KB
testcase_17 AC 73 ms
86,348 KB
testcase_18 AC 73 ms
86,136 KB
testcase_19 AC 72 ms
86,180 KB
testcase_20 AC 64 ms
83,872 KB
testcase_21 AC 64 ms
83,112 KB
testcase_22 AC 63 ms
82,604 KB
testcase_23 AC 63 ms
83,036 KB
testcase_24 AC 64 ms
83,288 KB
testcase_25 AC 64 ms
83,732 KB
testcase_26 AC 65 ms
83,908 KB
testcase_27 AC 64 ms
82,724 KB
testcase_28 AC 65 ms
82,440 KB
testcase_29 AC 64 ms
84,496 KB
testcase_30 AC 38 ms
53,532 KB
testcase_31 AC 60 ms
78,568 KB
testcase_32 AC 58 ms
78,316 KB
testcase_33 AC 69 ms
86,280 KB
testcase_34 AC 37 ms
52,572 KB
testcase_35 AC 37 ms
52,892 KB
testcase_36 AC 37 ms
53,244 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
      y=0
      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