結果

問題 No.2567 A_1 > A_2 > ... > A_N
ユーザー mymelochanmymelochan
提出日時 2023-12-02 16:00:11
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,311 ms / 2,000 ms
コード長 1,034 bytes
コンパイル時間 280 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 96,384 KB
最終ジャッジ日時 2024-09-26 19:39:46
合計ジャッジ時間 10,375 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 55 ms
54,784 KB
testcase_01 AC 1,039 ms
88,448 KB
testcase_02 AC 1,200 ms
93,952 KB
testcase_03 AC 998 ms
91,264 KB
testcase_04 AC 1,250 ms
92,928 KB
testcase_05 AC 1,311 ms
96,384 KB
testcase_06 AC 444 ms
79,360 KB
testcase_07 AC 467 ms
80,128 KB
testcase_08 AC 449 ms
80,256 KB
testcase_09 AC 452 ms
79,616 KB
testcase_10 AC 464 ms
79,616 KB
testcase_11 AC 63 ms
64,512 KB
testcase_12 AC 75 ms
69,248 KB
testcase_13 AC 58 ms
62,080 KB
testcase_14 AC 49 ms
54,528 KB
testcase_15 AC 74 ms
67,584 KB
testcase_16 AC 57 ms
61,952 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*(N+1)//2 > X:
        print(-1)
        continue

    ans = []

    v = 1<<60
    rem = X
    for i in range(N-1):
        ok = v
        ng = N-1-i
        r = N-i
        while ok-ng > 1:
            cen = (ok+ng)//2
            if (cen+1)*cen//2 - (cen-r+1)*(cen-r)//2 >= rem:
                ok = cen
            else:
                ng = cen
        v = ok-1
        ans.append(ok)
        #print("a",ok,rem)
        rem -= ok

    ans.append(rem)
    print(*ans)
0