結果

問題 No.2560 A_1 < A_2 < ... < A_N
ユーザー 👑 KA37RIKA37RI
提出日時 2023-12-02 14:46:49
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 561 ms / 2,000 ms
コード長 261 bytes
コンパイル時間 521 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 16,456 KB
最終ジャッジ日時 2024-09-26 17:23:14
合計ジャッジ時間 5,561 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 28 ms
10,624 KB
testcase_01 AC 118 ms
14,328 KB
testcase_02 AC 133 ms
14,984 KB
testcase_03 AC 115 ms
16,456 KB
testcase_04 AC 135 ms
15,768 KB
testcase_05 AC 137 ms
15,968 KB
testcase_06 AC 545 ms
10,752 KB
testcase_07 AC 558 ms
10,752 KB
testcase_08 AC 554 ms
10,496 KB
testcase_09 AC 560 ms
10,624 KB
testcase_10 AC 561 ms
10,624 KB
testcase_11 AC 30 ms
10,624 KB
testcase_12 AC 31 ms
10,752 KB
testcase_13 AC 30 ms
10,624 KB
testcase_14 AC 30 ms
10,752 KB
testcase_15 AC 30 ms
10,880 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def solve(n, x):
	head_sum = (n - 1) * n // 2
	last = x - head_sum
	if last < n:
		return [-1]
	else:
		ans = list(range(1, n + 1))
		ans[-1] = last
		return ans

t = int(input())
for _ in range(t):
	n, t = [int(x) for x in input().split()]
	print(*solve(n, t))
0