結果

問題 No.2560 A_1 < A_2 < ... < A_N
ユーザー yaakiyuyaakiyu
提出日時 2023-12-02 14:49:55
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 173 ms / 2,000 ms
コード長 223 bytes
コンパイル時間 449 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 83,924 KB
最終ジャッジ日時 2024-09-26 17:30:01
合計ジャッジ時間 3,456 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 49 ms
51,968 KB
testcase_01 AC 106 ms
80,232 KB
testcase_02 AC 104 ms
82,612 KB
testcase_03 AC 100 ms
82,176 KB
testcase_04 AC 103 ms
83,200 KB
testcase_05 AC 106 ms
83,924 KB
testcase_06 AC 172 ms
77,312 KB
testcase_07 AC 173 ms
77,312 KB
testcase_08 AC 166 ms
77,440 KB
testcase_09 AC 157 ms
77,696 KB
testcase_10 AC 168 ms
77,568 KB
testcase_11 AC 44 ms
52,352 KB
testcase_12 AC 50 ms
59,008 KB
testcase_13 AC 45 ms
52,224 KB
testcase_14 AC 43 ms
51,968 KB
testcase_15 AC 55 ms
61,184 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = lambda: sys.stdin.readline()[:-1]

t = int(input())

for i in range(t):
    n, x = map(int, input().split())
    p = x - n*(n-1)//2
    if p < n:
        print(-1)
    else:
        print(*range(1, n), p)
0