#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个点?