結果

問題 No.2560 A_1 < A_2 < ... < A_N
ユーザー achapiachapi
提出日時 2023-12-02 14:44:01
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 435 bytes
コンパイル時間 1,941 ms
コンパイル使用メモリ 204,132 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-09-26 17:15:10
合計ジャッジ時間 3,755 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 14 ms
5,248 KB
testcase_02 AC 20 ms
5,376 KB
testcase_03 AC 13 ms
5,376 KB
testcase_04 AC 15 ms
5,376 KB
testcase_05 AC 17 ms
5,376 KB
testcase_06 AC 128 ms
5,376 KB
testcase_07 AC 128 ms
5,376 KB
testcase_08 AC 127 ms
5,376 KB
testcase_09 WA -
testcase_10 WA -
testcase_11 AC 2 ms
5,376 KB
testcase_12 AC 2 ms
5,376 KB
testcase_13 AC 2 ms
5,376 KB
testcase_14 AC 2 ms
5,376 KB
testcase_15 AC 2 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
int main(){
	int T;
	cin >> T;
	while (T--){
		int N;
		long long X;
		cin >> N >> X;
		vector<long long> ans(N);
		for (int i = 0; i < N - 1; i++){
			ans[i] = i + 1;
			X -= i + 1;
		}
		if (ans[N - 2] < X){
			ans[N - 1] = X;
			for (int i = 0; i < N; i++){
				cout << ans[i];
				if (i + 1 < N){
					cout << ' ';
				}
			}
			cout << endl;
		} else {
			cout << -1 << endl;
		}
	}
}
0