結果

問題 No.2560 A_1 < A_2 < ... < A_N
ユーザー あ
提出日時 2023-12-13 23:03:08
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 284 ms / 2,000 ms
コード長 225 bytes
コンパイル時間 409 ms
コンパイル使用メモリ 81,972 KB
実行使用メモリ 83,732 KB
最終ジャッジ日時 2024-09-27 05:32:00
合計ジャッジ時間 3,954 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
52,096 KB
testcase_01 AC 68 ms
80,724 KB
testcase_02 AC 80 ms
82,528 KB
testcase_03 AC 71 ms
81,860 KB
testcase_04 AC 81 ms
82,304 KB
testcase_05 AC 76 ms
83,732 KB
testcase_06 AC 284 ms
77,312 KB
testcase_07 AC 275 ms
77,420 KB
testcase_08 AC 275 ms
76,928 KB
testcase_09 AC 273 ms
76,928 KB
testcase_10 AC 269 ms
77,056 KB
testcase_11 AC 38 ms
51,968 KB
testcase_12 AC 42 ms
59,392 KB
testcase_13 AC 40 ms
52,352 KB
testcase_14 AC 37 ms
52,096 KB
testcase_15 AC 45 ms
61,568 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

t = int(input())
for _ in range(t):
    n, x = map(int, input().split())

    mi = (1 + n) * n // 2
    if x >= mi:
        ans = list(range(1, n + 1))
        ans[-1] += x - mi
        print(*ans)
    else:
        print(-1)
0