結果

問題 No.2560 A_1 < A_2 < ... < A_N
ユーザー oginoshikibuoginoshikibu
提出日時 2023-12-02 14:52:37
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 290 ms / 2,000 ms
コード長 193 bytes
コンパイル時間 427 ms
コンパイル使用メモリ 82,220 KB
実行使用メモリ 83,572 KB
最終ジャッジ日時 2024-09-26 17:35:45
合計ジャッジ時間 3,596 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
52,480 KB
testcase_01 AC 68 ms
80,316 KB
testcase_02 AC 73 ms
82,664 KB
testcase_03 AC 68 ms
81,460 KB
testcase_04 AC 75 ms
82,304 KB
testcase_05 AC 76 ms
83,572 KB
testcase_06 AC 279 ms
77,608 KB
testcase_07 AC 273 ms
77,312 KB
testcase_08 AC 275 ms
77,696 KB
testcase_09 AC 269 ms
77,500 KB
testcase_10 AC 290 ms
77,080 KB
testcase_11 AC 39 ms
52,096 KB
testcase_12 AC 44 ms
59,264 KB
testcase_13 AC 39 ms
52,864 KB
testcase_14 AC 38 ms
51,968 KB
testcase_15 AC 47 ms
61,184 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

for _ in range(int(input())):
    n,x=map(int, input().split())
    if (n*(n+1))//2>x:
        print(-1)
        continue
    L=[i for i in range(1,n+1)]
    L[-1]+=x-(n*(n+1))//2
    print(*L)
0