結果

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

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;
using ll=long long;

int main(){
  ll t;
  cin>>t;
  while(t--){
    ll n,x;
    cin>>n>>x;
    ll sum=0;
    vector<ll> ans;
    for(ll i=1;i<=n-1;i++){
      ans.push_back(i);
      sum+=i;
    }
    if(x-sum<n){
      cout<<-1<<endl;
    }else{
      for(ll u:ans){
        cout<<u<<" ";
      }
      cout<<x-sum<<endl;
    }
  }
}
0