結果

問題 No.2560 A_1 < A_2 < ... < A_N
ユーザー nikoshonikosho
提出日時 2023-12-02 15:03:09
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 341 ms / 2,000 ms
コード長 303 bytes
コンパイル時間 353 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 88,192 KB
最終ジャッジ日時 2024-09-26 17:57:43
合計ジャッジ時間 4,252 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
51,712 KB
testcase_01 AC 94 ms
83,372 KB
testcase_02 AC 103 ms
86,432 KB
testcase_03 AC 94 ms
88,192 KB
testcase_04 AC 102 ms
87,936 KB
testcase_05 AC 103 ms
88,168 KB
testcase_06 AC 318 ms
76,800 KB
testcase_07 AC 341 ms
77,824 KB
testcase_08 AC 305 ms
76,672 KB
testcase_09 AC 341 ms
77,952 KB
testcase_10 AC 338 ms
78,080 KB
testcase_11 AC 47 ms
57,472 KB
testcase_12 AC 54 ms
60,032 KB
testcase_13 AC 47 ms
57,600 KB
testcase_14 AC 46 ms
57,472 KB
testcase_15 AC 57 ms
62,336 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

t = int(input())

for i in range(t):
    n, x = map(int,input().split())
    if x >= sum(range(1, n + 1)):
        j = 1
        ans = []
        while n>1:
            ans.append(j)
            x-=j
            j+=1
            n-=1
        ans.append(x)
        print(*ans)
    else:
        print(-1)
0