結果

問題 No.2560 A_1 < A_2 < ... < A_N
ユーザー KudeKude
提出日時 2023-12-12 22:34:03
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 328 ms / 2,000 ms
コード長 211 bytes
コンパイル時間 484 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 83,916 KB
最終ジャッジ日時 2024-09-27 05:03:15
合計ジャッジ時間 4,636 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
51,584 KB
testcase_01 AC 90 ms
79,832 KB
testcase_02 AC 90 ms
82,576 KB
testcase_03 AC 85 ms
81,536 KB
testcase_04 AC 89 ms
82,048 KB
testcase_05 AC 92 ms
83,916 KB
testcase_06 AC 323 ms
77,312 KB
testcase_07 AC 315 ms
77,184 KB
testcase_08 AC 319 ms
77,184 KB
testcase_09 AC 310 ms
77,056 KB
testcase_10 AC 328 ms
76,928 KB
testcase_11 AC 48 ms
59,264 KB
testcase_12 AC 53 ms
60,800 KB
testcase_13 AC 49 ms
59,520 KB
testcase_14 AC 48 ms
58,880 KB
testcase_15 AC 56 ms
63,360 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

for _ in range(int(input())):
    n, x = map(int, input().split())
    ans = list(range(1, n + 1))
    rest = x - sum(ans)
    if rest < 0:
        print(-1)
    else:
        ans[-1] += rest
        print(*ans)
0