結果

問題 No.2560 A_1 < A_2 < ... < A_N
ユーザー ぶりんがー@みゅーじしゃんぶりんがー@みゅーじしゃん
提出日時 2024-07-13 22:27:10
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 314 ms / 2,000 ms
コード長 176 bytes
コンパイル時間 295 ms
コンパイル使用メモリ 82,296 KB
実行使用メモリ 84,516 KB
最終ジャッジ日時 2024-07-13 22:27:14
合計ジャッジ時間 3,920 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
51,940 KB
testcase_01 AC 74 ms
80,656 KB
testcase_02 AC 85 ms
83,416 KB
testcase_03 AC 80 ms
82,560 KB
testcase_04 AC 82 ms
83,148 KB
testcase_05 AC 84 ms
84,516 KB
testcase_06 AC 314 ms
76,980 KB
testcase_07 AC 289 ms
77,240 KB
testcase_08 AC 298 ms
77,004 KB
testcase_09 AC 297 ms
76,868 KB
testcase_10 AC 286 ms
77,212 KB
testcase_11 AC 40 ms
54,428 KB
testcase_12 AC 43 ms
60,100 KB
testcase_13 AC 40 ms
53,224 KB
testcase_14 AC 38 ms
52,488 KB
testcase_15 AC 50 ms
62,908 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

t=int(input())
for i in range(t):
	n,x=map(int,input().split())
	if n*(n+1)//2>x:
		print(-1)
	else:
		anslist=list(range(1,n))
		anslist.append(x-n*(n-1)//2)
		print(*anslist)
0