結果
| 問題 | No.2567 A_1 > A_2 > ... > A_N | 
| コンテスト | |
| ユーザー |  | 
| 提出日時 | 2023-12-07 19:16:52 | 
| 言語 | C++14 (gcc 13.3.0 + boost 1.87.0) | 
| 結果 | 
                                WA
                                 
                             | 
| 実行時間 | - | 
| コード長 | 808 bytes | 
| コンパイル時間 | 1,560 ms | 
| コンパイル使用メモリ | 170,284 KB | 
| 実行使用メモリ | 6,948 KB | 
| 最終ジャッジ日時 | 2024-09-27 02:18:06 | 
| 合計ジャッジ時間 | 3,319 ms | 
| ジャッジサーバーID (参考情報) | judge1 / judge3 | 
(要ログイン)
| ファイルパターン | 結果 | 
|---|---|
| sample | AC * 1 | 
| other | AC * 1 WA * 15 | 
ソースコード
#include <bits/stdc++.h>
using namespace std;
using ll = long long;
using P = pair<ll, ll>;
using T = tuple<ll, ll, ll>;
// #include <atcoder/all>
// using namespace atcoder;
// using mint = modint1000000007;
#define rep(i, n) for(ll i = 0; i < n; i++)
int main() {
    cin.tie(nullptr);
    ios_base::sync_with_stdio(false);
    
    ll t; cin >> t;
    while(t--) {
        ll n, x; cin >> n >> x;
        if( x < (1+n)*n/2 ) cout << -1 << endl;
        else {
            vector<ll> ans(n);
            rep(i,n) ans[i] = n-i;
            x -= (1+n)*n/2;
            rep(i,n) {
                if( i >= n-1-x%n ) ans[i] += x/n + (x%n == 0 ? 0 : 1);
                else ans[i] += x/n;
            }
            rep(i,n) cout << ans[i] << " ";
            cout << endl;
        }
    }
    
    return 0;
}
            
            
            
        