結果

問題 No.2567 A_1 > A_2 > ... > A_N
ユーザー ありあけありあけ
提出日時 2024-10-08 14:21:58
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
RE  
実行時間 -
コード長 476 bytes
コンパイル時間 480 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 18,688 KB
最終ジャッジ日時 2024-10-08 14:22:04
合計ジャッジ時間 5,323 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 28 ms
10,496 KB
testcase_01 RE -
testcase_02 RE -
testcase_03 RE -
testcase_04 RE -
testcase_05 RE -
testcase_06 AC 459 ms
18,560 KB
testcase_07 AC 473 ms
18,688 KB
testcase_08 AC 449 ms
18,560 KB
testcase_09 AC 456 ms
18,432 KB
testcase_10 AC 480 ms
18,560 KB
testcase_11 AC 27 ms
10,496 KB
testcase_12 AC 30 ms
11,136 KB
testcase_13 AC 27 ms
10,880 KB
testcase_14 AC 26 ms
10,752 KB
testcase_15 AC 28 ms
10,880 KB
testcase_16 AC 27 ms
10,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

T = int(input())
query = []
for i in range(T):
    n,x = map(int,input().split())
    query.append([n,x])

def kinou(N,X,ans):
    if N == 0:
        return 0
    saisyo = N*(N+1)//2
    hamidasi = X - saisyo
    mod = (hamidasi+N-1)//N
#    print(saisyo,hamidasi,mod)
    ans.append(N+mod)
    kinou(N-1,(X-N-mod),ans)
    



for q in query:
    N = q[0]
    X = q[1]
    ans = []
    if N*(N+1)//2 > X:
        print(-1)
        continue
    kinou(N,X,ans)
    print(*ans)
0