結果

問題 No.2560 A_1 < A_2 < ... < A_N
ユーザー detteiuudetteiuu
提出日時 2024-11-28 22:44:47
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 320 ms / 2,000 ms
コード長 212 bytes
コンパイル時間 794 ms
コンパイル使用メモリ 82,164 KB
実行使用メモリ 83,620 KB
最終ジャッジ日時 2024-11-28 22:44:52
合計ジャッジ時間 4,228 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
51,744 KB
testcase_01 AC 75 ms
80,048 KB
testcase_02 AC 78 ms
83,032 KB
testcase_03 AC 92 ms
81,148 KB
testcase_04 AC 78 ms
82,304 KB
testcase_05 AC 81 ms
83,620 KB
testcase_06 AC 293 ms
77,696 KB
testcase_07 AC 299 ms
76,880 KB
testcase_08 AC 320 ms
77,692 KB
testcase_09 AC 297 ms
77,184 KB
testcase_10 AC 304 ms
77,376 KB
testcase_11 AC 43 ms
59,520 KB
testcase_12 AC 47 ms
61,056 KB
testcase_13 AC 45 ms
59,392 KB
testcase_14 AC 43 ms
59,648 KB
testcase_15 AC 50 ms
63,744 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

T = int(input())

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