結果

問題 No.2567 A_1 > A_2 > ... > A_N
ユーザー 👑 AngrySadEightAngrySadEight
提出日時 2023-11-24 01:24:10
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 347 ms / 2,000 ms
コード長 363 bytes
コンパイル時間 223 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 84,056 KB
最終ジャッジ日時 2024-09-26 08:28:32
合計ジャッジ時間 4,647 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
51,584 KB
testcase_01 AC 110 ms
80,864 KB
testcase_02 AC 113 ms
83,204 KB
testcase_03 AC 103 ms
81,668 KB
testcase_04 AC 107 ms
82,816 KB
testcase_05 AC 112 ms
84,056 KB
testcase_06 AC 338 ms
77,440 KB
testcase_07 AC 323 ms
76,544 KB
testcase_08 AC 347 ms
77,764 KB
testcase_09 AC 325 ms
76,840 KB
testcase_10 AC 344 ms
77,632 KB
testcase_11 AC 46 ms
53,248 KB
testcase_12 AC 59 ms
62,976 KB
testcase_13 AC 45 ms
52,736 KB
testcase_14 AC 41 ms
52,224 KB
testcase_15 AC 57 ms
61,952 KB
testcase_16 AC 45 ms
52,608 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

T = int(input())
for _ in range(T):
    N, X = map(int, input().split())
    if N * (N + 1) // 2 > X:
        print(-1)
        continue
    ans = [N - i for i in range(N)]
    X -= N * (N + 1) // 2
    div = X // N
    rem = X % N
    for i in range(N):
        if i < rem:
            ans[i] += (div + 1)
        else:
            ans[i] += div
    print(*ans)
0