結果

問題 No.2560 A_1 < A_2 < ... < A_N
ユーザー ああいいああいい
提出日時 2023-12-02 19:26:12
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 321 ms / 2,000 ms
コード長 184 bytes
コンパイル時間 221 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 85,304 KB
最終ジャッジ日時 2024-09-26 21:30:52
合計ジャッジ時間 3,858 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
51,584 KB
testcase_01 AC 89 ms
81,204 KB
testcase_02 AC 95 ms
84,492 KB
testcase_03 AC 91 ms
83,072 KB
testcase_04 AC 95 ms
84,608 KB
testcase_05 AC 96 ms
85,304 KB
testcase_06 AC 312 ms
76,928 KB
testcase_07 AC 312 ms
77,312 KB
testcase_08 AC 320 ms
77,056 KB
testcase_09 AC 321 ms
76,672 KB
testcase_10 AC 314 ms
76,928 KB
testcase_11 AC 43 ms
52,352 KB
testcase_12 AC 51 ms
58,880 KB
testcase_13 AC 44 ms
52,608 KB
testcase_14 AC 47 ms
51,968 KB
testcase_15 AC 55 ms
61,568 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

T = int(input())

for _ in range(T):
	N,X = map(int,input().split())
	tmp = (N - 1) * N // 2
	K = X - tmp
	if N - 1 < K:
		ans = list(range(1,N)) + [K]
		print(*ans)
	else:
		print(-1)
0