60pts
查看原帖
60pts
1049461
_SLL_楼主2024/11/22 21:41
#include<bits/stdc++.h>
using namespace std;
int main(){
    int type,a,b,c,d;
    cin>>type>>a>>b>>c>>d;
    if(type==0){
        cout<<a+b;
    }
    if(type==1){
        cout<<max(a-c,0)+(b-d,0);
    }
    return 0;
}

为什么WA 2个点?

2024/11/22 21:41
加载中...