這題對Python來說很友善,直接算就好了
每筆獎金算法
[(農場的面積/農場裡動物的數目) * 農夫的環保等級] * 農場裡動物的數目=獎金
不知道你看出來了沒有
其實動物數目會消掉
就變成
農場的面積 * 農夫的環保等級=獎金
再包迴圈跑就好了
部分程式碼:
for _ in range(int(input())):
a, b, c=map(int,input().split())
m+=a*c
題目連結:
https://zerojudge.tw/ShowProblem?problemid=c005