結果

問題 No.2560 A_1 < A_2 < ... < A_N
ユーザー vwxyzvwxyz
提出日時 2024-02-12 04:24:40
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 533 ms / 2,000 ms
コード長 204 bytes
コンパイル時間 89 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 18,380 KB
最終ジャッジ日時 2024-09-28 17:50:31
合計ジャッジ時間 4,654 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 27 ms
10,752 KB
testcase_01 AC 109 ms
15,972 KB
testcase_02 AC 121 ms
15,872 KB
testcase_03 AC 108 ms
17,280 KB
testcase_04 AC 126 ms
18,084 KB
testcase_05 AC 135 ms
18,380 KB
testcase_06 AC 533 ms
10,880 KB
testcase_07 AC 523 ms
10,752 KB
testcase_08 AC 521 ms
10,752 KB
testcase_09 AC 518 ms
10,752 KB
testcase_10 AC 530 ms
10,752 KB
testcase_11 AC 36 ms
12,156 KB
testcase_12 AC 36 ms
12,160 KB
testcase_13 AC 35 ms
12,416 KB
testcase_14 AC 36 ms
12,032 KB
testcase_15 AC 37 ms
11,976 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

T=int(input())
for t in range(T):
	N,X=map(int,input().split())
	ans_lst=[i for i in range(1,N)]
	ans_lst.append(X-sum(ans_lst))
	if N>=2 and ans_lst[-2]>=ans_lst[-1]:
		print(-1)
	else:
		print(*ans_lst)
0