-Code
for _ in range(int(input())):
res = 0
mission = [list(map(int, input().split())) for _ in range(int(input()))]
my_k, my_d, my_a = map(int, input().split())
for k, d, a in mission:
total = my_k * k - my_d * d + my_a * a
if total < 0:
continue
res += total
print(res)
'Beakjoon&프로그래머스 > 파이썬' 카테고리의 다른 글
[백준/파이썬] 26502번 Decoder (0) | 2024.04.16 |
---|---|
[백준/파이썬] 30617번 Knob (0) | 2024.04.15 |
[백준/파이썬] 19751번 Fractification (0) | 2024.04.13 |
[백준/파이썬] 24333번 СРЕЩА НА ПРИЯТЕЛИ (0) | 2024.04.12 |
[백준/파이썬] 24312번 ДИНИ (0) | 2024.04.11 |