#35405: Python 參考答案


doramay1130@gmail.com (ci xuan Chen)

學校 : 不指定學校
編號 : 233901
來源 : [180.217.242.153]
最後登入時間 :
2023-08-15 10:43:34
f605. 1. 購買力 -- 2021年1月APCS | From: [1.200.37.240] | 發表日期 : 2023-05-31 19:16

a,b=map(int,input().split())
A=0
c=0
for i in range(a):
    x,y,z=sorted(map(int,input().split()))
    if z-x>=b:
        c+=1
        A+=(x+y+z)//3

print(c,A)

 
ZeroJudge Forum