結果

問題 No.2567 A_1 > A_2 > ... > A_N
ユーザー n_nan_na
提出日時 2024-01-06 08:54:41
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 331 ms / 2,000 ms
コード長 447 bytes
コンパイル時間 975 ms
コンパイル使用メモリ 82,336 KB
実行使用メモリ 89,020 KB
最終ジャッジ日時 2024-09-27 19:15:44
合計ジャッジ時間 5,369 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,036 KB
testcase_01 AC 104 ms
84,804 KB
testcase_02 AC 113 ms
86,296 KB
testcase_03 AC 104 ms
88,264 KB
testcase_04 AC 111 ms
87,664 KB
testcase_05 AC 114 ms
89,020 KB
testcase_06 AC 311 ms
76,876 KB
testcase_07 AC 327 ms
77,404 KB
testcase_08 AC 314 ms
77,112 KB
testcase_09 AC 331 ms
77,108 KB
testcase_10 AC 302 ms
77,008 KB
testcase_11 AC 43 ms
53,444 KB
testcase_12 AC 54 ms
63,788 KB
testcase_13 AC 41 ms
54,204 KB
testcase_14 AC 38 ms
53,288 KB
testcase_15 AC 53 ms
63,696 KB
testcase_16 AC 42 ms
53,808 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def cs(n):
    return n*(n+1)//2


T = int(input())

for _ in range(T):
    N,X = map(int,input().split())
    P = []
    for i in range(N):
        idx = N - i
        s = cs(idx)
        rem = X - s
        if rem < 0:
            break
        q = rem//idx
        r = rem%idx
        p = idx + q
        if r > 0:
            p += 1
        P.append(p)
        X -= p
        
    if len(P) == N:
        print(*P)
    else:
        print(-1)
0