結果

問題 No.2560 A_1 < A_2 < ... < A_N
ユーザー hirayuu_ychirayuu_yc
提出日時 2023-12-02 15:20:27
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 237 bytes
コンパイル時間 638 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 90,624 KB
最終ジャッジ日時 2024-09-26 18:29:59
合計ジャッジ時間 2,845 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
51,840 KB
testcase_01 AC 97 ms
84,608 KB
testcase_02 AC 102 ms
87,456 KB
testcase_03 AC 95 ms
90,112 KB
testcase_04 AC 99 ms
90,624 KB
testcase_05 AC 109 ms
89,428 KB
testcase_06 RE -
testcase_07 RE -
testcase_08 RE -
testcase_09 RE -
testcase_10 RE -
testcase_11 AC 61 ms
73,216 KB
testcase_12 AC 68 ms
75,904 KB
testcase_13 AC 61 ms
73,472 KB
testcase_14 AC 60 ms
73,088 KB
testcase_15 AC 72 ms
76,800 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

T=int(input())
for i in range(T):
    N,X=map(int,input().split())
    ans=[]
    add=0
    for j in range(N-1):
        add+=j+1
        ans.append(j+1)
    X-=add
    if ans[-1]>=X:
        print(-1)
    else:
        print(*(ans+[X]))
0