結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,088 KB
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 AC 365 ms
77,600 KB
testcase_07 AC 349 ms
78,188 KB
testcase_08 AC 344 ms
77,860 KB
testcase_09 AC 344 ms
77,488 KB
testcase_10 AC 342 ms
77,500 KB
testcase_11 AC 44 ms
61,032 KB
testcase_12 AC 47 ms
62,672 KB
testcase_13 AC 40 ms
52,824 KB
testcase_14 AC 38 ms
53,088 KB
testcase_15 AC 49 ms
62,792 KB
testcase_16 AC 39 ms
53,320 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)
0