結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
53,076 KB
testcase_01 AC 88 ms
83,512 KB
testcase_02 AC 91 ms
86,248 KB
testcase_03 AC 82 ms
88,392 KB
testcase_04 AC 89 ms
88,552 KB
testcase_05 AC 93 ms
88,340 KB
testcase_06 RE -
testcase_07 RE -
testcase_08 RE -
testcase_09 RE -
testcase_10 RE -
testcase_11 AC 56 ms
74,352 KB
testcase_12 AC 59 ms
76,092 KB
testcase_13 AC 54 ms
74,448 KB
testcase_14 AC 53 ms
73,580 KB
testcase_15 AC 63 ms
76,608 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 r > P[-1]:
        P.append(r)
        print(*P)
    else:
        print(-1)

    
0