結果

問題 No.2560 A_1 < A_2 < ... < A_N
ユーザー n_nan_na
提出日時 2024-01-02 09:19:08
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 331 ms / 2,000 ms
コード長 301 bytes
コンパイル時間 299 ms
コンパイル使用メモリ 82,588 KB
実行使用メモリ 88,760 KB
最終ジャッジ日時 2024-09-27 17:39:24
合計ジャッジ時間 3,897 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,288 KB
testcase_01 AC 83 ms
83,628 KB
testcase_02 AC 90 ms
86,364 KB
testcase_03 AC 87 ms
88,760 KB
testcase_04 AC 90 ms
88,256 KB
testcase_05 AC 91 ms
88,364 KB
testcase_06 AC 270 ms
76,620 KB
testcase_07 AC 308 ms
77,560 KB
testcase_08 AC 331 ms
77,780 KB
testcase_09 AC 318 ms
77,668 KB
testcase_10 AC 297 ms
77,256 KB
testcase_11 AC 54 ms
74,436 KB
testcase_12 AC 59 ms
76,172 KB
testcase_13 AC 54 ms
74,216 KB
testcase_14 AC 53 ms
73,692 KB
testcase_15 AC 64 ms
77,032 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

T = int(input())

for _ in range(T):
    N,X = map(int,input().split())
    s = 0
    P = []
    for i in range(N-1):
        P.append(i+1)
        s += (i+1)
    r = X - s
    if len(P) == 0:
        print(X)
    elif r > P[-1]:
        P.append(r)
        print(*P)
    else:
        print(-1)

    
0