結果

問題 No.2567 A_1 > A_2 > ... > A_N
ユーザー sasa8uyauyasasa8uyauya
提出日時 2024-09-06 19:00:02
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 317 bytes
コンパイル時間 560 ms
コンパイル使用メモリ 82,896 KB
実行使用メモリ 84,856 KB
最終ジャッジ日時 2024-09-06 19:00:07
合計ジャッジ時間 4,615 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,568 KB
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 AC 344 ms
77,480 KB
testcase_07 AC 351 ms
78,024 KB
testcase_08 AC 340 ms
78,204 KB
testcase_09 AC 369 ms
77,740 KB
testcase_10 AC 339 ms
77,720 KB
testcase_11 AC 46 ms
59,868 KB
testcase_12 AC 47 ms
62,840 KB
testcase_13 AC 41 ms
54,572 KB
testcase_14 AC 37 ms
52,692 KB
testcase_15 AC 49 ms
62,712 KB
testcase_16 AC 39 ms
53,284 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

T=int(input())
for _ in range(T):
	n,x=map(int,input().split())
	if n*(n+1)//2>x:
		print(-1)
		continue
	ok=10**10
	ng=n-1
	while ok-ng>1:
		m=(ok+ng)//2
		if n*(m+m-n+1)//2>=x:
			ok=m
		else:
			ng=m
	a=list(range(ok-n+1,ok+1))[::-1]
	for i in range(n*(ok+ok-n+1)//2-x):
		a[~i]-=1
	print(*a if 0 not in a else -1)
0