結果

問題 No.2560 A_1 < A_2 < ... < A_N
ユーザー kekenxkekenx
提出日時 2024-01-09 01:02:01
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 111 ms / 2,000 ms
コード長 462 bytes
コンパイル時間 594 ms
コンパイル使用メモリ 68,028 KB
実行使用メモリ 6,676 KB
最終ジャッジ日時 2024-01-09 01:02:04
合計ジャッジ時間 3,410 ms
ジャッジサーバーID
(参考情報)
judge11 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,676 KB
testcase_01 AC 10 ms
6,676 KB
testcase_02 AC 12 ms
6,676 KB
testcase_03 AC 11 ms
6,676 KB
testcase_04 AC 12 ms
6,676 KB
testcase_05 AC 13 ms
6,676 KB
testcase_06 AC 107 ms
6,676 KB
testcase_07 AC 104 ms
6,676 KB
testcase_08 AC 111 ms
6,676 KB
testcase_09 AC 105 ms
6,676 KB
testcase_10 AC 105 ms
6,676 KB
testcase_11 AC 2 ms
6,676 KB
testcase_12 AC 2 ms
6,676 KB
testcase_13 AC 2 ms
6,676 KB
testcase_14 AC 2 ms
6,676 KB
testcase_15 AC 2 ms
6,676 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#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;
}


0