結果

問題 No.2560 A_1 < A_2 < ... < A_N
ユーザー sasa8uyauyasasa8uyauya
提出日時 2024-09-06 17:25:38
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 319 ms / 2,000 ms
コード長 148 bytes
コンパイル時間 431 ms
コンパイル使用メモリ 82,328 KB
実行使用メモリ 83,624 KB
最終ジャッジ日時 2024-09-06 17:25:43
合計ジャッジ時間 4,794 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
53,540 KB
testcase_01 AC 73 ms
80,796 KB
testcase_02 AC 78 ms
82,784 KB
testcase_03 AC 75 ms
81,560 KB
testcase_04 AC 77 ms
82,224 KB
testcase_05 AC 102 ms
83,624 KB
testcase_06 AC 290 ms
77,560 KB
testcase_07 AC 287 ms
77,144 KB
testcase_08 AC 298 ms
77,804 KB
testcase_09 AC 319 ms
77,304 KB
testcase_10 AC 298 ms
77,216 KB
testcase_11 AC 43 ms
59,880 KB
testcase_12 AC 46 ms
62,140 KB
testcase_13 AC 44 ms
59,952 KB
testcase_14 AC 44 ms
60,772 KB
testcase_15 AC 50 ms
64,948 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

T=int(input())
for _ in range(T):
	n,x=map(int,input().split())
	a=list(range(1,n+1))
	A=sum(a)
	if A>x:
		print(-1)
	else:
		a[-1]+=x-A
		print(*a)
0