結果

問題 No.2567 A_1 > A_2 > ... > A_N
ユーザー noriocnorioc
提出日時 2024-07-16 00:51:21
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 315 ms / 2,000 ms
コード長 339 bytes
コンパイル時間 236 ms
コンパイル使用メモリ 82,364 KB
実行使用メモリ 84,112 KB
最終ジャッジ日時 2024-07-16 00:51:27
合計ジャッジ時間 4,869 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
53,484 KB
testcase_01 AC 86 ms
80,544 KB
testcase_02 AC 92 ms
82,644 KB
testcase_03 AC 87 ms
81,996 KB
testcase_04 AC 86 ms
81,584 KB
testcase_05 AC 91 ms
84,112 KB
testcase_06 AC 299 ms
77,344 KB
testcase_07 AC 307 ms
77,088 KB
testcase_08 AC 315 ms
76,960 KB
testcase_09 AC 310 ms
77,208 KB
testcase_10 AC 313 ms
77,268 KB
testcase_11 AC 43 ms
54,208 KB
testcase_12 AC 53 ms
63,588 KB
testcase_13 AC 42 ms
54,208 KB
testcase_14 AC 39 ms
53,288 KB
testcase_15 AC 51 ms
62,720 KB
testcase_16 AC 42 ms
53,496 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def solve():
    N, X = map(int, input().split())
    s = N * (N+1) // 2
    if X < s:
        print(-1)
        return

    ans = list(reversed(range(1, N+1)))
    d, m = divmod(X-s, N)
    for i in range(N):
        ans[i] += d
        if i < m:
            ans[i] += 1

    print(*ans)


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