結果

問題 No.2560 A_1 < A_2 < ... < A_N
ユーザー PreginaPregina
提出日時 2023-12-02 20:54:09
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 309 ms / 2,000 ms
コード長 166 bytes
コンパイル時間 250 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 83,560 KB
最終ジャッジ日時 2024-09-26 21:39:45
合計ジャッジ時間 3,945 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 57 ms
51,456 KB
testcase_01 AC 98 ms
80,108 KB
testcase_02 AC 108 ms
82,812 KB
testcase_03 AC 99 ms
82,304 KB
testcase_04 AC 104 ms
83,456 KB
testcase_05 AC 107 ms
83,560 KB
testcase_06 AC 306 ms
77,056 KB
testcase_07 AC 309 ms
77,056 KB
testcase_08 AC 304 ms
76,672 KB
testcase_09 AC 299 ms
77,184 KB
testcase_10 AC 301 ms
76,928 KB
testcase_11 AC 43 ms
52,096 KB
testcase_12 AC 49 ms
59,264 KB
testcase_13 AC 43 ms
52,352 KB
testcase_14 AC 42 ms
52,224 KB
testcase_15 AC 53 ms
61,696 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

T = int(input())

for _ in range(T):
    N, X = map(int, input().split())
    if N*(N+1)//2 > X:
        print(-1)
    else:
        print(*range(1, N), X-(N-1)*N//2)
0