結果

問題 No.2560 A_1 < A_2 < ... < A_N
ユーザー liny_tailliny_tail
提出日時 2024-08-13 21:54:48
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 287 bytes
コンパイル時間 316 ms
コンパイル使用メモリ 82,856 KB
実行使用メモリ 85,192 KB
最終ジャッジ日時 2024-08-13 21:54:53
合計ジャッジ時間 3,767 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
53,532 KB
testcase_01 AC 63 ms
80,476 KB
testcase_02 AC 67 ms
83,520 KB
testcase_03 AC 65 ms
81,064 KB
testcase_04 AC 67 ms
85,180 KB
testcase_05 AC 69 ms
85,192 KB
testcase_06 AC 278 ms
76,872 KB
testcase_07 AC 277 ms
77,152 KB
testcase_08 AC 268 ms
77,040 KB
testcase_09 AC 281 ms
77,204 KB
testcase_10 WA -
testcase_11 AC 48 ms
60,032 KB
testcase_12 AC 48 ms
60,672 KB
testcase_13 AC 48 ms
59,392 KB
testcase_14 AC 52 ms
59,520 KB
testcase_15 AC 49 ms
61,056 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