結果

問題 No.2560 A_1 < A_2 < ... < A_N
ユーザー 👑 KazunKazun
提出日時 2024-01-21 00:52:06
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 321 ms / 2,000 ms
コード長 286 bytes
コンパイル時間 167 ms
コンパイル使用メモリ 82,016 KB
実行使用メモリ 83,432 KB
最終ジャッジ日時 2024-09-28 05:47:39
合計ジャッジ時間 3,716 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
51,840 KB
testcase_01 AC 75 ms
80,000 KB
testcase_02 AC 83 ms
83,256 KB
testcase_03 AC 77 ms
82,688 KB
testcase_04 AC 83 ms
83,432 KB
testcase_05 AC 85 ms
83,260 KB
testcase_06 AC 293 ms
77,464 KB
testcase_07 AC 288 ms
77,296 KB
testcase_08 AC 318 ms
77,440 KB
testcase_09 AC 321 ms
77,116 KB
testcase_10 AC 295 ms
77,244 KB
testcase_11 AC 47 ms
61,184 KB
testcase_12 AC 51 ms
62,976 KB
testcase_13 AC 50 ms
61,440 KB
testcase_14 AC 47 ms
60,672 KB
testcase_15 AC 53 ms
65,280 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def solve():
    N, X = map(int, input().split())

    if N == 1:
        return [X]

    A = list(range(1, N))
    A.append(X - sum(A))
    return A if A[-2] < A[-1] else [-1]

#==================================================
T = int(input())
for t in range(T):
    print(*solve())
0