-Code
for _ in range(int(input())):
n, a, d = map(int, input().split())
res = [a]
for i in range(n - 1):
res.append(res[-1] + d)
print(sum(res))
'Beakjoon&프로그래머스 > 파이썬' 카테고리의 다른 글
[백준/파이썬] 29732번 Rick-Roll Virus (0) | 2024.07.25 |
---|---|
[백준/파이썬] 9288번 More Dice (0) | 2024.07.24 |
[백준/파이썬] 4758번 Filling Out the Team (1) | 2024.07.22 |
[백준/파이썬] 29534번 Буквы и весы (0) | 2024.07.21 |
[백준/파이썬] 25849번 Briefcases Full of Money (0) | 2024.07.20 |