結果

問題 No.1015 おつりは要らないです
ユーザー persimmon-persimmonpersimmon-persimmon
提出日時 2021-06-15 15:59:03
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 205 ms / 2,000 ms
コード長 1,195 bytes
コンパイル時間 284 ms
コンパイル使用メモリ 82,560 KB
実行使用メモリ 108,224 KB
最終ジャッジ日時 2024-06-08 02:44:07
合計ジャッジ時間 6,441 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
54,016 KB
testcase_01 AC 37 ms
53,888 KB
testcase_02 AC 38 ms
54,272 KB
testcase_03 AC 38 ms
53,760 KB
testcase_04 AC 39 ms
54,124 KB
testcase_05 AC 38 ms
53,760 KB
testcase_06 AC 38 ms
54,016 KB
testcase_07 AC 38 ms
54,016 KB
testcase_08 AC 37 ms
54,144 KB
testcase_09 AC 37 ms
53,760 KB
testcase_10 AC 200 ms
106,508 KB
testcase_11 AC 198 ms
105,824 KB
testcase_12 AC 205 ms
107,980 KB
testcase_13 AC 194 ms
106,468 KB
testcase_14 AC 193 ms
106,540 KB
testcase_15 AC 193 ms
107,848 KB
testcase_16 AC 205 ms
107,972 KB
testcase_17 AC 202 ms
108,184 KB
testcase_18 AC 195 ms
107,732 KB
testcase_19 AC 197 ms
108,224 KB
testcase_20 AC 173 ms
107,964 KB
testcase_21 AC 194 ms
107,840 KB
testcase_22 AC 194 ms
107,888 KB
testcase_23 AC 159 ms
103,588 KB
testcase_24 AC 173 ms
107,656 KB
testcase_25 AC 174 ms
107,640 KB
testcase_26 AC 170 ms
107,408 KB
testcase_27 AC 161 ms
103,992 KB
testcase_28 AC 167 ms
107,860 KB
testcase_29 AC 175 ms
107,872 KB
testcase_30 AC 38 ms
53,760 KB
testcase_31 AC 106 ms
102,888 KB
testcase_32 AC 109 ms
102,784 KB
testcase_33 AC 133 ms
107,252 KB
testcase_34 AC 43 ms
54,016 KB
testcase_35 AC 40 ms
54,144 KB
testcase_36 AC 38 ms
54,144 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def main0(n,x,y,z,a):
	pass

def main1(n,x,y,z,a):
	b=[(u+1+1000-1)//1000 for u in a]
	# おつりありで支払うために千円札何枚必要か。
	# まず1万円札、5000円札で支払う部分を払う。
	# 1万円札で払ってもロスがない店
	for i in range(n):
		if b[i]>=10 and z:
			tmp=min(z,b[i]//10)
			z-=tmp
			b[i]-=tmp*10
	if z>=n:return True
	# 1万円札で支払うときのロスが少ない店
	c=[[10-u%10,i] for i,u in enumerate(b)]
	c.sort(key=lambda u:u[0])
	for u,i in c[:z]:
		b[i]=b[i]-b[i]%10
	z=0

	# 5000円札で払ってもロスがない店
	for i in range(n):
		if b[i]>=5 and y:
			tmp=min(y,b[i]//5)
			y-=tmp
			b[i]-=tmp*5
	if y>=n:return True
	# 5000円札で支払うときのロスが少ない店
	c=[[5-u%5,i] for i,u in enumerate(b)]
	c.sort(key=lambda u:u[0])
	for u,i in c[:y]:
		b[i]=b[i]-b[i]%5
	y=0
	# 残りは1000円札で払う
	if sum(b)<=x:return True
	return False

if __name__=='__main__':
	n,x,y,z=map(int,input().split())
	a=list(map(int,input().split()))
	ret1=main1(n,x,y,z,a)
	print('Yes' if ret1 else 'No')

from random import randint
if __name__=='__main__1':
	for _ in range(100):
		n=randint(1,10)
		x=randint(1,10)
0