結果

問題 No.2560 A_1 < A_2 < ... < A_N
ユーザー oginoshikibuoginoshikibu
提出日時 2023-12-02 14:52:37
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 293 ms / 2,000 ms
コード長 193 bytes
コンパイル時間 194 ms
コンパイル使用メモリ 81,700 KB
実行使用メモリ 83,168 KB
最終ジャッジ日時 2023-12-02 14:52:42
合計ジャッジ時間 3,605 ms
ジャッジサーバーID
(参考情報)
judge15 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
53,460 KB
testcase_01 AC 71 ms
79,708 KB
testcase_02 AC 76 ms
82,216 KB
testcase_03 AC 77 ms
81,096 KB
testcase_04 AC 76 ms
81,888 KB
testcase_05 AC 78 ms
83,168 KB
testcase_06 AC 293 ms
77,024 KB
testcase_07 AC 290 ms
76,872 KB
testcase_08 AC 290 ms
77,152 KB
testcase_09 AC 289 ms
77,132 KB
testcase_10 AC 285 ms
76,760 KB
testcase_11 AC 38 ms
53,460 KB
testcase_12 AC 43 ms
59,328 KB
testcase_13 AC 39 ms
53,460 KB
testcase_14 AC 37 ms
53,460 KB
testcase_15 AC 47 ms
62,220 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

for _ in range(int(input())):
    n,x=map(int, input().split())
    if (n*(n+1))//2>x:
        print(-1)
        continue
    L=[i for i in range(1,n+1)]
    L[-1]+=x-(n*(n+1))//2
    print(*L)
0