結果

問題 No.2560 A_1 < A_2 < ... < A_N
ユーザー SuchmosSuchmos
提出日時 2024-12-28 18:02:35
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
AC  
実行時間 687 ms / 2,000 ms
コード長 172 bytes
コンパイル時間 597 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 16,320 KB
最終ジャッジ日時 2024-12-28 18:02:42
合計ジャッジ時間 6,776 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
10,496 KB
testcase_01 AC 138 ms
14,424 KB
testcase_02 AC 162 ms
14,980 KB
testcase_03 AC 131 ms
16,320 KB
testcase_04 AC 161 ms
15,480 KB
testcase_05 AC 170 ms
15,756 KB
testcase_06 AC 669 ms
10,496 KB
testcase_07 AC 672 ms
10,496 KB
testcase_08 AC 687 ms
10,624 KB
testcase_09 AC 638 ms
10,624 KB
testcase_10 AC 673 ms
10,752 KB
testcase_11 AC 32 ms
10,496 KB
testcase_12 AC 33 ms
10,496 KB
testcase_13 AC 32 ms
10,752 KB
testcase_14 AC 32 ms
10,496 KB
testcase_15 AC 33 ms
10,624 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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