結果

問題 No.2560 A_1 < A_2 < ... < A_N
ユーザー superzugansuperzugan
提出日時 2024-02-10 04:03:17
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 526 ms / 2,000 ms
コード長 178 bytes
コンパイル時間 223 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 16,440 KB
最終ジャッジ日時 2024-09-28 17:00:02
合計ジャッジ時間 5,248 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 25 ms
10,752 KB
testcase_01 AC 113 ms
14,316 KB
testcase_02 AC 123 ms
15,100 KB
testcase_03 AC 112 ms
16,440 KB
testcase_04 AC 126 ms
15,732 KB
testcase_05 AC 130 ms
15,824 KB
testcase_06 AC 522 ms
10,752 KB
testcase_07 AC 524 ms
10,752 KB
testcase_08 AC 526 ms
10,752 KB
testcase_09 AC 516 ms
10,752 KB
testcase_10 AC 518 ms
10,752 KB
testcase_11 AC 31 ms
10,752 KB
testcase_12 AC 31 ms
10,752 KB
testcase_13 AC 31 ms
10,880 KB
testcase_14 AC 31 ms
10,752 KB
testcase_15 AC 33 ms
10,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n=int(input())
def zen(x,y):
	ans=sum(range(1,x))
	if x<=y-ans:
		return list(range(1,x))+[y-ans]
	return [-1]
for _ in range(n):
	a,b=map(int,input().split())
	print(*zen(a,b))
0