結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
10,624 KB
testcase_01 AC 114 ms
18,560 KB
testcase_02 AC 145 ms
19,712 KB
testcase_03 AC 114 ms
22,528 KB
testcase_04 AC 128 ms
21,300 KB
testcase_05 AC 136 ms
21,888 KB
testcase_06 AC 581 ms
10,624 KB
testcase_07 AC 567 ms
10,752 KB
testcase_08 AC 568 ms
10,752 KB
testcase_09 AC 567 ms
10,624 KB
testcase_10 WA -
testcase_11 AC 35 ms
10,752 KB
testcase_12 AC 37 ms
10,752 KB
testcase_13 AC 34 ms
10,880 KB
testcase_14 AC 35 ms
10,752 KB
testcase_15 AC 37 ms
10,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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