結果

問題 No.2560 A_1 < A_2 < ... < A_N
ユーザー e60e256e60e256
提出日時 2023-12-02 15:00:39
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 327 ms / 2,000 ms
コード長 259 bytes
コンパイル時間 252 ms
コンパイル使用メモリ 82,688 KB
実行使用メモリ 84,480 KB
最終ジャッジ日時 2024-09-26 17:53:12
合計ジャッジ時間 4,125 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 48 ms
51,584 KB
testcase_01 AC 101 ms
80,640 KB
testcase_02 AC 112 ms
83,348 KB
testcase_03 AC 102 ms
82,944 KB
testcase_04 AC 108 ms
84,480 KB
testcase_05 AC 111 ms
84,032 KB
testcase_06 AC 319 ms
77,952 KB
testcase_07 AC 310 ms
77,568 KB
testcase_08 AC 321 ms
77,056 KB
testcase_09 AC 327 ms
77,440 KB
testcase_10 AC 325 ms
77,312 KB
testcase_11 AC 49 ms
52,480 KB
testcase_12 AC 58 ms
59,008 KB
testcase_13 AC 49 ms
52,352 KB
testcase_14 AC 48 ms
52,608 KB
testcase_15 AC 60 ms
61,056 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

T = int(input())

for t in range(T):
    N, X = map(int, input().split())
    summ_until_final2 = (N) * (N - 1) // 2
    if (summ_until_final2 + N > X):
        print(-1)
    else:
        
        print(*([i+1 for i in range(N-1)] + [X - summ_until_final2]))
0