#include <bits/stdc++.h>
using namespace std;
int main(){
int n,m;
cin>>n>>m;
if(n*2<=m) cout<<0;//每个人住两个房间还不满
else cout<<4*n-2*m;//2*n-(m-n)*2
//n个人能产生的最大愤怒值,减掉空房间的愤怒值
return 0;
}
#include <bits/stdc++.h>
using namespace std;
int main(){
int n,m;
cin>>n>>m;
if(n*2<=m) cout<<0;//每个人住两个房间还不满
else cout<<4*n-2*m;//2*n-(m-n)*2
//n个人能产生的最大愤怒值,减掉空房间的愤怒值
return 0;
}
评论区