#26165: 非常淺顯易懂的解法


54brianchen@gmail.com (陳柏安)

學校 : 新竹市立建功高級中學
編號 : 127168
來源 : [101.136.233.238]
最後登入時間 :
2023-08-24 14:58:37
f605. 1. 購買力 -- 2021年1月APCS | From: [123.192.91.3] | 發表日期 : 2021-07-20 14:55

非常的淺顯易懂

#include<bits/stdc++.h>

using namespace std;

int main(){

int n,price[3],d,number=0,money=0;

cin>>n>>d;

while(n--){

for(int i=0;i<3;i++){

cin>>price[i];

}

sort(price,price+3);

if(price[2]-price[0]>=d){

number++;

money=money+(price[0]+price[1]+price[2])/3;

}

 

}

cout<<number<<" "<<money;

return 0;

}

 
ZeroJudge Forum