結果

問題 No.2560 A_1 < A_2 < ... < A_N
ユーザー loop0919loop0919
提出日時 2023-11-14 10:56:11
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 331 ms / 2,000 ms
コード長 285 bytes
コンパイル時間 349 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 84,212 KB
最終ジャッジ日時 2024-09-26 05:46:51
合計ジャッジ時間 3,979 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
51,712 KB
testcase_01 AC 86 ms
80,692 KB
testcase_02 AC 95 ms
83,236 KB
testcase_03 AC 87 ms
82,660 KB
testcase_04 AC 91 ms
83,328 KB
testcase_05 AC 96 ms
84,212 KB
testcase_06 AC 312 ms
77,440 KB
testcase_07 AC 306 ms
77,312 KB
testcase_08 AC 331 ms
77,084 KB
testcase_09 AC 321 ms
76,928 KB
testcase_10 AC 319 ms
77,440 KB
testcase_11 AC 45 ms
52,352 KB
testcase_12 AC 49 ms
59,264 KB
testcase_13 AC 44 ms
52,224 KB
testcase_14 AC 42 ms
52,352 KB
testcase_15 AC 53 ms
61,440 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def sigma(num):
    return num * (num + 1) // 2


def solve():
    N, X = map(int, input().split())
    if sigma(N) > X:
        print(-1)
    else:
        ans = list(range(1, N))
        ans.append(X - sigma(N-1))
        print(*ans)


T = int(input())
for _ in range(T):
    solve()
0