結果

問題 No.2567 A_1 > A_2 > ... > A_N
ユーザー tipstar0125tipstar0125
提出日時 2023-12-07 14:39:47
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 321 ms / 2,000 ms
コード長 310 bytes
コンパイル時間 233 ms
コンパイル使用メモリ 82,480 KB
実行使用メモリ 88,448 KB
最終ジャッジ日時 2024-09-27 02:09:33
合計ジャッジ時間 4,425 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,072 KB
testcase_01 AC 89 ms
83,892 KB
testcase_02 AC 93 ms
86,248 KB
testcase_03 AC 89 ms
88,448 KB
testcase_04 AC 90 ms
87,768 KB
testcase_05 AC 98 ms
88,112 KB
testcase_06 AC 314 ms
77,420 KB
testcase_07 AC 321 ms
77,704 KB
testcase_08 AC 301 ms
77,660 KB
testcase_09 AC 307 ms
77,984 KB
testcase_10 AC 319 ms
77,924 KB
testcase_11 AC 40 ms
53,544 KB
testcase_12 AC 48 ms
63,044 KB
testcase_13 AC 39 ms
53,916 KB
testcase_14 AC 36 ms
52,136 KB
testcase_15 AC 47 ms
63,264 KB
testcase_16 AC 39 ms
54,864 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

T=int(input())

for _ in range(T):
    N,X=list(map(int, input().split()))
    s=(1+N)*N//2
    if s>X:
        print(-1)
        continue
    x=(X-s)//N
    r=X-(s+x*N)
    ans=[]
    for i in range(N,0,-1):
        a=i+x
        if r>0:
            a+=1
            r-=1
        ans.append(a)
    print(*ans)
0