結果
| 問題 |
No.2560 A_1 < A_2 < ... < A_N
|
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2023-12-02 14:44:03 |
| 言語 | C++17 (gcc 13.3.0 + boost 1.87.0) |
| 結果 |
AC
|
| 実行時間 | 30 ms / 2,000 ms |
| コード長 | 678 bytes |
| コンパイル時間 | 2,049 ms |
| コンパイル使用メモリ | 195,508 KB |
| 最終ジャッジ日時 | 2025-02-18 03:52:01 |
|
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 1 |
| other | AC * 15 |
ソースコード
#include <bits/stdc++.h>
using namespace std;
using ll = long long;
template<class T> ostream& operator << (ostream& os, const vector<T>& vec) {
if(vec.empty()) return os;
os << vec[0];
for(auto it = vec.begin(); ++it != vec.end(); ) os << ' ' << *it;
return os;
}
int main(){
ios::sync_with_stdio(false);
cin.tie(0);
int T;
cin >> T;
while(T--){
ll n, x;
cin >> n >> x;
if(n * (n + 1) / 2 <= x){
vector<ll> ans(n);
iota(ans.begin(), ans.end(), 1);
ans.back() = x - n * (n - 1) / 2;
cout << ans << '\n';
}else{
cout << -1 << '\n';
}
}
}