結果

問題 No.2560 A_1 < A_2 < ... < A_N
ユーザー ゼットゼット
提出日時 2023-12-20 23:37:59
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 336 ms / 2,000 ms
コード長 216 bytes
コンパイル時間 175 ms
コンパイル使用メモリ 82,100 KB
実行使用メモリ 83,660 KB
最終ジャッジ日時 2024-09-27 10:16:21
合計ジャッジ時間 3,759 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,224 KB
testcase_01 AC 74 ms
80,288 KB
testcase_02 AC 86 ms
83,000 KB
testcase_03 AC 74 ms
81,664 KB
testcase_04 AC 80 ms
82,176 KB
testcase_05 AC 82 ms
83,660 KB
testcase_06 AC 267 ms
76,764 KB
testcase_07 AC 298 ms
77,440 KB
testcase_08 AC 336 ms
77,968 KB
testcase_09 AC 297 ms
77,696 KB
testcase_10 AC 289 ms
77,312 KB
testcase_11 AC 38 ms
52,736 KB
testcase_12 AC 45 ms
59,904 KB
testcase_13 AC 40 ms
52,736 KB
testcase_14 AC 38 ms
52,352 KB
testcase_15 AC 49 ms
62,208 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

Q=int(input())
for _ in range(Q):
  N,X=map(int,input().split())
  y=N*(N+1)//2
  if y>X:
    print(-1)
    continue
  result=[0]*N
  for i in range(N-1):
    result[i]=i+1
    X-=i+1
  result[N-1]=X
  print(*result)
0