結果

問題 No.2560 A_1 < A_2 < ... < A_N
ユーザー ymskskyymsksky
提出日時 2024-04-09 22:43:29
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 198 ms / 2,000 ms
コード長 270 bytes
コンパイル時間 705 ms
コンパイル使用メモリ 82,360 KB
実行使用メモリ 87,104 KB
最終ジャッジ日時 2024-10-01 23:17:19
合計ジャッジ時間 3,570 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,820 KB
testcase_01 AC 73 ms
82,672 KB
testcase_02 AC 81 ms
83,132 KB
testcase_03 AC 75 ms
84,308 KB
testcase_04 AC 81 ms
85,232 KB
testcase_05 AC 84 ms
85,000 KB
testcase_06 AC 198 ms
86,624 KB
testcase_07 AC 181 ms
86,100 KB
testcase_08 AC 178 ms
87,104 KB
testcase_09 AC 176 ms
86,500 KB
testcase_10 AC 180 ms
86,632 KB
testcase_11 AC 40 ms
52,692 KB
testcase_12 AC 45 ms
59,148 KB
testcase_13 AC 38 ms
53,224 KB
testcase_14 AC 36 ms
52,204 KB
testcase_15 AC 44 ms
62,240 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

ans = []
t = int(input())
for _ in range(t):
    n, x = map(int, input().split())
    # 1 ~ (n - 1)の和
    s = n * (n - 1) // 2
    if x - s < n:
        res = [-1]
    else:
        res = list(range(1, n)) + [x - s]
    ans.append(res)
for an in ans:
    print(*an)
0