結果
問題 |
No.2560 A_1 < A_2 < ... < A_N
|
ユーザー |
![]() |
提出日時 | 2024-01-09 01:02:01 |
言語 | C++17 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 110 ms / 2,000 ms |
コード長 | 462 bytes |
コンパイル時間 | 513 ms |
コンパイル使用メモリ | 66,048 KB |
最終ジャッジ日時 | 2025-02-18 16:38:01 |
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 1 |
other | AC * 15 |
ソースコード
#include <iostream> #include <cassert> using namespace std; int main() { ios::sync_with_stdio(false); cin.tie(nullptr); int t; cin >> t; while (t--) { int N; long long X; cin >> N >> X; long long a = (long long)N * (N + 1) / 2LL; if (a > X) { cout << -1 << endl; } else { long long diff = X - a; for (int i = 1; i < N; i++) { cout << i << ' '; } cout << (long)N + diff << endl; } } return 0; }