#37242: 簡易python


cyberdeng95@gmail.com (dvorakonetrick)

學校 : 不指定學校
編號 : 240817
來源 : [210.60.35.130]
最後登入時間 :
2023-10-27 15:49:55
f605. 1. 購買力 -- 2021年1月APCS | From: [123.240.212.168] | 發表日期 : 2023-08-27 15:22

amount, dif = map(int, input().split())
spent = 0
bought = 0
for i in range(amount):
    a = [int(b) for b in input().split()]
    if (max(a) - min(a)) >= dif:
        spent += sum(a)/3
        bought += 1
print(bought, int(spent))
 
ZeroJudge Forum