結果

問題 No.2560 A_1 < A_2 < ... < A_N
ユーザー miztommiztom
提出日時 2024-03-13 01:52:25
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 295 ms / 2,000 ms
コード長 133 bytes
コンパイル時間 284 ms
コンパイル使用メモリ 82,540 KB
実行使用メモリ 83,704 KB
最終ジャッジ日時 2024-09-29 22:33:06
合計ジャッジ時間 3,815 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
52,680 KB
testcase_01 AC 68 ms
80,564 KB
testcase_02 AC 73 ms
82,532 KB
testcase_03 AC 69 ms
82,320 KB
testcase_04 AC 72 ms
83,704 KB
testcase_05 AC 76 ms
83,504 KB
testcase_06 AC 292 ms
77,444 KB
testcase_07 AC 295 ms
77,568 KB
testcase_08 AC 272 ms
77,492 KB
testcase_09 AC 264 ms
77,372 KB
testcase_10 AC 262 ms
77,472 KB
testcase_11 AC 37 ms
52,692 KB
testcase_12 AC 42 ms
60,456 KB
testcase_13 AC 37 ms
53,988 KB
testcase_14 AC 36 ms
53,628 KB
testcase_15 AC 44 ms
62,344 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

for i in range(int(input())):
    n,x=map(int,input().split())
    if n*n+n>x*2:print(-1)
    else:print(*range(1,n),x-sum(range(n)))
0