不正经题解
2024-08-20 19:03:51
发布于:上海
28阅读
1回复
1点赞
#include <bits/stdc++.h>
using namespace std;
int main() {
long long n, x, y;
cin >> n >> x >> y;
if (x > y) cout << 0;
else if(n==1)cout<<y-x+1;
else cout<<(n-2) * (y-x) + 1;
return 0;
}
全部评论 1
一眼chat
2024-08-20 来自 广东
0
有帮助,赞一个