結果

問題 No.2560 A_1 < A_2 < ... < A_N
ユーザー nikoro256nikoro256
提出日時 2023-12-08 02:19:53
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 303 ms / 2,000 ms
コード長 228 bytes
コンパイル時間 282 ms
コンパイル使用メモリ 82,440 KB
実行使用メモリ 88,320 KB
最終ジャッジ日時 2024-09-27 02:35:33
合計ジャッジ時間 3,753 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
51,968 KB
testcase_01 AC 100 ms
83,600 KB
testcase_02 AC 80 ms
86,356 KB
testcase_03 AC 73 ms
88,320 KB
testcase_04 AC 90 ms
88,320 KB
testcase_05 AC 103 ms
88,212 KB
testcase_06 AC 281 ms
76,928 KB
testcase_07 AC 283 ms
76,800 KB
testcase_08 AC 283 ms
77,440 KB
testcase_09 AC 286 ms
76,864 KB
testcase_10 AC 303 ms
77,440 KB
testcase_11 AC 56 ms
73,728 KB
testcase_12 AC 60 ms
76,416 KB
testcase_13 AC 59 ms
74,240 KB
testcase_14 AC 60 ms
73,472 KB
testcase_15 AC 71 ms
76,928 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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