結果

問題 No.2560 A_1 < A_2 < ... < A_N
ユーザー rotti_coderrotti_coder
提出日時 2023-11-21 01:12:36
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 301 ms / 2,000 ms
コード長 229 bytes
コンパイル時間 191 ms
コンパイル使用メモリ 82,492 KB
実行使用メモリ 88,672 KB
最終ジャッジ日時 2024-09-26 06:49:25
合計ジャッジ時間 3,378 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
51,584 KB
testcase_01 AC 70 ms
83,896 KB
testcase_02 AC 75 ms
86,788 KB
testcase_03 AC 74 ms
88,320 KB
testcase_04 AC 77 ms
88,672 KB
testcase_05 AC 79 ms
88,280 KB
testcase_06 AC 237 ms
77,052 KB
testcase_07 AC 265 ms
77,312 KB
testcase_08 AC 301 ms
77,500 KB
testcase_09 AC 283 ms
77,812 KB
testcase_10 AC 266 ms
77,508 KB
testcase_11 AC 46 ms
73,600 KB
testcase_12 AC 51 ms
76,160 KB
testcase_13 AC 46 ms
73,728 KB
testcase_14 AC 45 ms
73,280 KB
testcase_15 AC 54 ms
76,800 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

for i in range(int(input())):
  a,b=map(int,input().split())
  ans=[]
  count=0
  for i in range(a-1):
    ans.append(i+1)
    count+=i+1
  count=b-count
  if count<a:
    print(-1)
    continue
  ans.append(count)
  print(*ans)
0