728x90
https://www.acmicpc.net/problem/9501
t = int(input())
for _ in range(t):
n, d = map(int, input().split())
cnt = 0
for i in range(n):
v, f, c = map(int, input().split())
if d <= v*f//c:
cnt += 1
print(cnt)
반응형
'전.py' 카테고리의 다른 글
백준 9076 점수 집계 (0) | 2020.12.10 |
---|---|
백준 9094 수학적 호기심 (0) | 2020.12.10 |
백준 10102 개표 (0) | 2020.12.10 |
백준 10409 서버 (0) | 2020.12.10 |
백준 10419 지각 (0) | 2020.12.10 |