C++题解
2024-08-20 20:08:53
发布于:四川
9阅读
0回复
0点赞
AC代码
#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;
}
这里空空如也
有帮助,赞一个