짱해커가 되어보자

boj 9501 본문

프로그래밍_일반/백준

boj 9501

Spadework 2020. 2. 10. 18:05

* Solved 기준 브론즈3 단순 풀이

for _ in range(int(input())):
	n,d = map(int, input().split()); r=0
	for _ in range(n):
		v,f,c = map(int, input().split())
		if(d/v*c<=f): r+= 1
	print(r)

 

'프로그래밍_일반 > 백준' 카테고리의 다른 글

boj 16283  (0) 2020.02.10
boj 10599  (0) 2020.02.10
boj 2991  (0) 2020.02.10
boj 14720  (0) 2020.02.10
boj 15633  (0) 2020.02.10
Comments