結果

問題 No.2560 A_1 < A_2 < ... < A_N
ユーザー H20H20
提出日時 2023-12-02 14:49:43
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 320 ms / 2,000 ms
コード長 256 bytes
コンパイル時間 233 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 88,324 KB
最終ジャッジ日時 2024-09-26 17:29:47
合計ジャッジ時間 3,900 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
51,712 KB
testcase_01 AC 97 ms
83,720 KB
testcase_02 AC 102 ms
86,536 KB
testcase_03 AC 103 ms
88,192 KB
testcase_04 AC 103 ms
88,192 KB
testcase_05 AC 106 ms
88,324 KB
testcase_06 AC 313 ms
76,800 KB
testcase_07 AC 307 ms
76,928 KB
testcase_08 AC 320 ms
77,568 KB
testcase_09 AC 310 ms
76,696 KB
testcase_10 AC 313 ms
77,184 KB
testcase_11 AC 53 ms
60,032 KB
testcase_12 AC 53 ms
61,696 KB
testcase_13 AC 51 ms
59,392 KB
testcase_14 AC 51 ms
60,160 KB
testcase_15 AC 58 ms
63,488 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

T = int(input())
for _ in range(T):
    N,X = map(int, input().split())
    ANS = []
    i = 1
    while len(ANS)<N and X>=i:
        ANS.append(i)
        X-=i
        i+=1
    ANS[-1]+=X
    if len(ANS)==N:
        print(*ANS)
    else:
        print(-1)
0