結果

問題 No.2560 A_1 < A_2 < ... < A_N
ユーザー KoiKoi
提出日時 2023-12-02 15:48:48
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 174 ms / 2,000 ms
コード長 369 bytes
コンパイル時間 187 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 92,220 KB
最終ジャッジ日時 2024-09-26 19:19:45
合計ジャッジ時間 2,730 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
52,096 KB
testcase_01 AC 74 ms
86,784 KB
testcase_02 AC 78 ms
89,728 KB
testcase_03 AC 77 ms
90,108 KB
testcase_04 AC 75 ms
88,584 KB
testcase_05 AC 83 ms
92,220 KB
testcase_06 AC 174 ms
85,644 KB
testcase_07 AC 170 ms
85,716 KB
testcase_08 AC 170 ms
85,756 KB
testcase_09 AC 160 ms
85,736 KB
testcase_10 AC 158 ms
86,016 KB
testcase_11 AC 37 ms
52,224 KB
testcase_12 AC 41 ms
60,032 KB
testcase_13 AC 37 ms
53,376 KB
testcase_14 AC 37 ms
52,480 KB
testcase_15 AC 45 ms
62,208 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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