結果

問題 No.2560 A_1 < A_2 < ... < A_N
ユーザー mymelochanmymelochan
提出日時 2023-12-02 14:37:52
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 178 ms / 2,000 ms
コード長 659 bytes
コンパイル時間 424 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 86,656 KB
最終ジャッジ日時 2024-09-26 17:00:28
合計ジャッジ時間 3,275 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 48 ms
53,888 KB
testcase_01 AC 94 ms
81,792 KB
testcase_02 AC 96 ms
85,120 KB
testcase_03 AC 93 ms
84,736 KB
testcase_04 AC 98 ms
86,656 KB
testcase_05 AC 98 ms
85,760 KB
testcase_06 AC 167 ms
78,976 KB
testcase_07 AC 167 ms
78,592 KB
testcase_08 AC 167 ms
78,592 KB
testcase_09 AC 170 ms
78,592 KB
testcase_10 AC 178 ms
78,976 KB
testcase_11 AC 50 ms
54,528 KB
testcase_12 AC 56 ms
62,080 KB
testcase_13 AC 51 ms
54,784 KB
testcase_14 AC 49 ms
54,656 KB
testcase_15 AC 61 ms
63,488 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#############################################################

import sys
sys.setrecursionlimit(10**7)

from heapq import heappop,heappush
from collections import deque,defaultdict,Counter
from bisect import bisect_left, bisect_right
from itertools import product,combinations,permutations
from math import sin,cos
#from math import isqrt #DO NOT USE PyPy

ipt = sys.stdin.readline
iin = lambda :int(ipt())
lmin = lambda :list(map(int,ipt().split()))

#############################################################

for _ in range(iin()):
    N,X = lmin()
    if (N+1)*N//2 > X:
        print(-1)
    else:
        print(*list(list(range(1,N))+[X-N*(N-1)//2]))
0