結果
| 問題 | No.2560 A_1 < A_2 < ... < A_N |
| コンテスト | |
| ユーザー |
eve__fuyuki
|
| 提出日時 | 2023-12-03 22:58:09 |
| 言語 | C++17 (gcc 13.3.0 + boost 1.89.0) |
| 結果 |
AC
|
| 実行時間 | 30 ms / 2,000 ms |
| コード長 | 583 bytes |
| 記録 | |
| コンパイル時間 | 2,006 ms |
| コンパイル使用メモリ | 196,496 KB |
| 最終ジャッジ日時 | 2025-02-18 06:55:35 |
|
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 1 |
| other | AC * 15 |
ソースコード
#include <bits/stdc++.h>
using namespace std;
void fast_io() {
ios::sync_with_stdio(false);
std::cin.tie(nullptr);
}
void solve() {
long long n, x;
cin >> n >> x;
if (n * (n + 1) / 2 > x) {
cout << -1 << endl;
return;
}
vector<long long> a(n);
for (int i = 0; i < n - 1; i++) {
a[i] = i + 1;
}
a[n - 1] = x - (n * (n - 1) / 2);
for (int i = 0; i < n; i++) {
cout << a[i] << (i == n - 1 ? "\n" : " ");
}
}
int main() {
fast_io();
int t;
cin >> t;
while (t--) {
solve();
}
}
eve__fuyuki