結果

問題 No.2560 A_1 < A_2 < ... < A_N
ユーザー LucagonLucagon
提出日時 2023-12-02 14:47:33
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 356 ms / 2,000 ms
コード長 265 bytes
コンパイル時間 548 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 88,668 KB
最終ジャッジ日時 2024-09-26 17:24:43
合計ジャッジ時間 4,422 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 48 ms
51,712 KB
testcase_01 AC 111 ms
83,688 KB
testcase_02 AC 106 ms
86,304 KB
testcase_03 AC 98 ms
88,448 KB
testcase_04 AC 102 ms
88,320 KB
testcase_05 AC 106 ms
88,668 KB
testcase_06 AC 284 ms
76,544 KB
testcase_07 AC 329 ms
77,184 KB
testcase_08 AC 356 ms
77,572 KB
testcase_09 AC 346 ms
77,876 KB
testcase_10 AC 328 ms
77,184 KB
testcase_11 AC 69 ms
72,960 KB
testcase_12 AC 78 ms
76,288 KB
testcase_13 AC 73 ms
73,472 KB
testcase_14 AC 70 ms
72,832 KB
testcase_15 AC 82 ms
76,672 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

t = int(input())

for i in range(t):
    n,x = map(int,input().split())
    ans = []
    cnt = 0
    for j in range(1,n):
        ans.append(j)
        cnt += j
    
    if x - cnt > n - 1:
        ans.append(x - cnt)
        print(*ans)
    else:
        print(-1)
0