結果

問題 No.2567 A_1 > A_2 > ... > A_N
ユーザー titiatitia
提出日時 2023-12-17 02:12:28
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 328 ms / 2,000 ms
コード長 640 bytes
コンパイル時間 181 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 84,024 KB
最終ジャッジ日時 2024-09-27 07:53:52
合計ジャッジ時間 4,574 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
51,712 KB
testcase_01 AC 135 ms
80,356 KB
testcase_02 AC 150 ms
82,548 KB
testcase_03 AC 128 ms
81,616 KB
testcase_04 AC 150 ms
82,304 KB
testcase_05 AC 149 ms
84,024 KB
testcase_06 AC 326 ms
76,952 KB
testcase_07 AC 328 ms
76,720 KB
testcase_08 AC 318 ms
76,800 KB
testcase_09 AC 328 ms
76,652 KB
testcase_10 AC 322 ms
76,916 KB
testcase_11 AC 48 ms
62,464 KB
testcase_12 AC 52 ms
65,536 KB
testcase_13 AC 45 ms
62,080 KB
testcase_14 AC 36 ms
53,504 KB
testcase_15 AC 52 ms
65,408 KB
testcase_16 AC 44 ms
61,440 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

T=int(input())

for tests in range(T):
    N,X=map(int,input().split())
    ANS=[0]*N

    if (1+N)*N//2>X:
        print(-1)
        continue

    for i in range(N):
        NG=N-i-1
        if i==0:
            OK=10**18
        else:
            OK=ANS[i-1]-1

        while OK>NG+1:
            #print(i,OK,NG)
            mid=(OK+NG)//2

            S=X-mid
            L=N-i-1

            #print(S,mid,i,((mid-1)+(mid-1-(L-1)))*L//2)

            if S<=((mid-1)+(mid-1-(L-1)))*L//2:
                OK=mid
            else:
                NG=mid

        #print("!",OK,NG)

        ANS[i]=OK
        X-=OK

    print(*ANS)
        
0