結果

問題 No.2567 A_1 > A_2 > ... > A_N
ユーザー lloyzlloyz
提出日時 2023-12-18 00:03:44
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 139 ms / 2,000 ms
コード長 386 bytes
コンパイル時間 180 ms
コンパイル使用メモリ 82,784 KB
実行使用メモリ 83,752 KB
最終ジャッジ日時 2024-09-27 08:11:52
合計ジャッジ時間 3,280 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,444 KB
testcase_01 AC 79 ms
80,812 KB
testcase_02 AC 85 ms
83,408 KB
testcase_03 AC 82 ms
81,876 KB
testcase_04 AC 83 ms
82,496 KB
testcase_05 AC 86 ms
83,752 KB
testcase_06 AC 136 ms
77,304 KB
testcase_07 AC 139 ms
77,124 KB
testcase_08 AC 126 ms
77,060 KB
testcase_09 AC 131 ms
76,936 KB
testcase_10 AC 128 ms
77,240 KB
testcase_11 AC 39 ms
53,836 KB
testcase_12 AC 46 ms
63,080 KB
testcase_13 AC 36 ms
54,164 KB
testcase_14 AC 34 ms
52,884 KB
testcase_15 AC 43 ms
62,432 KB
testcase_16 AC 36 ms
54,084 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

for _ in range(int(input())):
    n, x = map(int, input().split())
    min_ = n * (n + 1) // 2
    if x < min_:
        print(-1)
        continue
    d = x - min_
    q, r = divmod(d, n)
    ANS = [n - i for i in range(n)]
    for i in range(n):
        if i < r:
            ANS[i] += q + 1
        else:
            ANS[i] += q
    print(*ANS)
0