結果
問題 | No.2560 A_1 < A_2 < ... < A_N |
ユーザー | Kyo_s_s |
提出日時 | 2023-09-26 13:27:33 |
言語 | C++17(gcc12) (gcc 12.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 132 ms / 2,000 ms |
コード長 | 490 bytes |
コンパイル時間 | 2,377 ms |
コンパイル使用メモリ | 201,968 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-09-26 05:46:07 |
合計ジャッジ時間 | 4,361 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 1 |
other | AC * 15 |
ソースコード
#include<bits/stdc++.h> using namespace std; using ll = long long; void solve() { int N; long long X; cin >> N >> X; if (N * (N + 1) / 2 > X) { cout << -1 << endl; return; } vector<ll> ans(N); for (int i = 0; i < N; i++) { ans[i] = i + 1; X -= i + 1; } ans.back() += X; for (int i = 0; i < N; i++) { cout << ans[i] << " \n"[i == N - 1]; } } int main() { int T; cin >> T; while (T--) solve(); }