結果

問題 No.2567 A_1 > A_2 > ... > A_N
ユーザー raspberry1729raspberry1729
提出日時 2023-12-02 16:50:31
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 699 ms / 2,000 ms
コード長 242 bytes
コンパイル時間 277 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 21,332 KB
最終ジャッジ日時 2024-09-26 20:48:18
合計ジャッジ時間 6,654 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,752 KB
testcase_01 AC 171 ms
18,300 KB
testcase_02 AC 189 ms
17,336 KB
testcase_03 AC 165 ms
19,276 KB
testcase_04 AC 188 ms
20,008 KB
testcase_05 AC 203 ms
21,332 KB
testcase_06 AC 699 ms
10,624 KB
testcase_07 AC 681 ms
10,624 KB
testcase_08 AC 685 ms
10,624 KB
testcase_09 AC 693 ms
10,752 KB
testcase_10 AC 683 ms
10,624 KB
testcase_11 AC 33 ms
10,624 KB
testcase_12 AC 33 ms
10,624 KB
testcase_13 AC 32 ms
10,624 KB
testcase_14 AC 31 ms
10,624 KB
testcase_15 AC 31 ms
10,624 KB
testcase_16 AC 31 ms
10,624 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

a=int(input())
for i in range(a):
	b,c=map(int,input().split())
	if c<((b+1)*b)//2:
		print(-1)
		continue
	d=c-((b+1)*b)//2
	n=d//b
	ans=[j+n+1 for j in range(b)]
	l=d%b
	for j in range(-1,-l-1,-1):
	    ans[j]+=1
	ans=ans[::-1]
	print(*ans)
0