結果

問題 No.2560 A_1 < A_2 < ... < A_N
ユーザー liny_tailliny_tail
提出日時 2024-08-13 22:14:38
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 381 bytes
コンパイル時間 224 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 22,784 KB
最終ジャッジ日時 2024-08-13 22:14:44
合計ジャッジ時間 5,656 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 OLE -
testcase_07 -- -
testcase_08 -- -
testcase_09 -- -
testcase_10 -- -
testcase_11 -- -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

T = int(input())
N,X = [],[]
for i in range(T):
  a,b = map(int, input().split(' '))
  N.append(a)
  X.append(b)

for i in range(T):
  lst = []
  for j in range(1, N[i]):
    if X[i] < j:
      lst = [-1]
      break
    
    lst.append(j)
    X[i] -= j
  
  if X[i] <= j:
    lst = [-1]
  else:
    lst.append(X)
  
  print(' '.join([str(j) for j in lst]))
0