C++题解
2024-09-10 19:37:40
发布于:四川
6阅读
0回复
0点赞
AC代码
#include <bits/stdc++.h>
using namespace std;
int main() {
ios::sync_with_stdio(false);
cin.tie(nullptr), cout.tie(NULL);
long long n, x, d;
cin >> n >> x >> d;
if (n == 1) {
cout << -1 << '\n';
return 0;
}
cout << 2 << ' ' << n * 4 + 1 << '\n';
for (int i = 0; i < n; ++i) {
long long v = x + i * d;
if (i == 1) {
v += n * d;
}
for (int j = 0; j < 4; ++j) {
cout << v + j * n * d << " \n"[j + 1 == 4];
}
}
return 0;
}
这里空空如也
有帮助,赞一个