-Code
for t in range(1, int(input()) + 1):
n, s, d = map(int, input().split())
res = 0
for _ in range(n):
d_i, v_i = map(int, input().split())
if s * d >= d_i:
res += v_i
print(f"Data Set {t}:")
print(res)
print()
'Beakjoon&프로그래머스 > 파이썬' 카테고리의 다른 글
[백준/파이썬] 28960번 Плащ левитации (1) | 2024.02.18 |
---|---|
[백준/파이썬] 25893번 Majestic 10 (0) | 2024.02.17 |
[백준/파이썬] 25206번 너의 평점은 (1) | 2024.02.15 |
[백준/파이썬] 18198번 Basketball One-on-One (0) | 2024.02.14 |
[백준/파이썬] 29683번 Рождественская лотерея (0) | 2024.02.13 |