結果

問題 No.2567 A_1 > A_2 > ... > A_N
ユーザー nikoro256nikoro256
提出日時 2023-12-09 13:01:55
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 344 ms / 2,000 ms
コード長 251 bytes
コンパイル時間 354 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 84,664 KB
最終ジャッジ日時 2024-09-27 03:34:41
合計ジャッジ時間 4,442 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
51,712 KB
testcase_01 AC 96 ms
81,396 KB
testcase_02 AC 97 ms
83,712 KB
testcase_03 AC 92 ms
82,304 KB
testcase_04 AC 94 ms
83,712 KB
testcase_05 AC 97 ms
84,664 KB
testcase_06 AC 324 ms
77,568 KB
testcase_07 AC 344 ms
77,896 KB
testcase_08 AC 308 ms
77,824 KB
testcase_09 AC 341 ms
78,056 KB
testcase_10 AC 340 ms
78,220 KB
testcase_11 AC 42 ms
53,120 KB
testcase_12 AC 53 ms
62,720 KB
testcase_13 AC 42 ms
52,736 KB
testcase_14 AC 39 ms
51,968 KB
testcase_15 AC 52 ms
61,440 KB
testcase_16 AC 43 ms
52,736 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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