結果

問題 No.2567 A_1 > A_2 > ... > A_N
ユーザー Navier_BoltzmannNavier_Boltzmann
提出日時 2023-12-02 14:35:00
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 210 ms / 2,000 ms
コード長 441 bytes
コンパイル時間 186 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 84,524 KB
最終ジャッジ日時 2024-09-26 16:54:15
合計ジャッジ時間 3,887 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 52 ms
55,168 KB
testcase_01 AC 101 ms
81,728 KB
testcase_02 AC 107 ms
83,796 KB
testcase_03 AC 103 ms
82,368 KB
testcase_04 AC 105 ms
83,328 KB
testcase_05 AC 109 ms
84,524 KB
testcase_06 AC 201 ms
78,084 KB
testcase_07 AC 193 ms
78,336 KB
testcase_08 AC 198 ms
78,464 KB
testcase_09 AC 201 ms
78,056 KB
testcase_10 AC 210 ms
78,616 KB
testcase_11 AC 54 ms
56,576 KB
testcase_12 AC 66 ms
65,536 KB
testcase_13 AC 54 ms
56,192 KB
testcase_14 AC 51 ms
55,040 KB
testcase_15 AC 64 ms
64,512 KB
testcase_16 AC 55 ms
56,064 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import *
from itertools import *
from functools import *
from heapq import *
import sys,math
input = sys.stdin.readline

def answer():
    N,X = map(int,input().split())
    if N*(N+1)//2 >X:
        print(-1)
        return
    
    res = X - N*(N+1)//2
    base,p = divmod(res,N)
    ans = [base + N-i for i in range(N)]
    for j in range(p):
        ans[j] += 1
    print(*ans)
for _ in range(int(input())):
    answer()
0