結果
問題 | No.2560 A_1 < A_2 < ... < A_N |
ユーザー | kekenx |
提出日時 | 2024-01-09 01:02:01 |
言語 | C++17(gcc12) (gcc 12.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 109 ms / 2,000 ms |
コード長 | 462 bytes |
コンパイル時間 | 583 ms |
コンパイル使用メモリ | 69,004 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-09-27 19:45:59 |
合計ジャッジ時間 | 2,471 ms |
ジャッジサーバーID (参考情報) |
judge5 / 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; }