結果

問題 No.2560 A_1 < A_2 < ... < A_N
ユーザー t98slidert98slider
提出日時 2023-12-02 14:44:03
言語 C++17(gcc12)
(gcc 12.3.0 + boost 1.87.0)
結果
AC  
実行時間 25 ms / 2,000 ms
コード長 678 bytes
コンパイル時間 2,119 ms
コンパイル使用メモリ 203,008 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-09-26 17:15:06
合計ジャッジ時間 3,389 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 1
other AC * 15
権限があれば一括ダウンロードができます

ソースコード

diff #

#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';
        }
    }
}
0