結果

問題 No.2560 A_1 < A_2 < ... < A_N
ユーザー aogeraaogera
提出日時 2024-03-30 16:43:57
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 246 ms / 2,000 ms
コード長 367 bytes
コンパイル時間 204 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 76,844 KB
最終ジャッジ日時 2024-09-30 17:36:00
合計ジャッジ時間 3,607 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
51,584 KB
testcase_01 AC 79 ms
75,904 KB
testcase_02 AC 81 ms
75,904 KB
testcase_03 AC 80 ms
76,160 KB
testcase_04 AC 86 ms
75,904 KB
testcase_05 AC 86 ms
76,160 KB
testcase_06 AC 241 ms
76,672 KB
testcase_07 AC 234 ms
76,672 KB
testcase_08 AC 244 ms
76,704 KB
testcase_09 AC 246 ms
76,844 KB
testcase_10 AC 244 ms
76,720 KB
testcase_11 AC 39 ms
52,352 KB
testcase_12 AC 45 ms
58,624 KB
testcase_13 AC 41 ms
52,480 KB
testcase_14 AC 39 ms
52,352 KB
testcase_15 AC 50 ms
61,952 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def I(): return input()
def N(): return int(input())
def M(): return map(int,input().split())
def L(): return list(map(int,input().split()))

#-----------------------------------------


T = N()
for test in range(T):
  N,X = M()
  mini = N*(N+1)//2
  
  if mini > X:
    print(-1)
    continue
  
  for i in range(N-1):
    print(i+1,end = " ")
  
  print(N + X-mini)
0