단순 수학 문제이다. 9501번 꿍의 우주여행과 같은 문제이다.
for _ in range(int(input())):
N, D = map(int, input().split())
cnt = 0
for i in range(N):
v, f, c = map(int, input().split())
if v * f/c >= D:
cnt += 1
print(cnt)
'Agorithm > 백준 알고리즘' 카테고리의 다른 글
백준 알고리즘 8387번 Dyslexia(python) (0) | 2021.03.25 |
---|---|
백준 알고리즘 8371번 Dyslexia(python) (0) | 2021.03.25 |
백준 알고리즘 21185번 Some Sum(python) (0) | 2021.03.24 |
백준 알고리즘 1822번 차집합(python) (0) | 2021.03.24 |
백준 알고리즘 10527번 Judging Troubles(python) (0) | 2021.03.24 |