結果

問題 No.2567 A_1 > A_2 > ... > A_N
ユーザー ゼットゼット
提出日時 2023-12-21 00:40:01
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 452 ms / 2,000 ms
コード長 421 bytes
コンパイル時間 334 ms
コンパイル使用メモリ 82,416 KB
実行使用メモリ 92,868 KB
最終ジャッジ日時 2024-09-27 10:20:03
合計ジャッジ時間 5,977 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,820 KB
testcase_01 AC 280 ms
83,748 KB
testcase_02 AC 316 ms
90,176 KB
testcase_03 AC 278 ms
88,412 KB
testcase_04 AC 326 ms
89,156 KB
testcase_05 AC 340 ms
92,868 KB
testcase_06 AC 402 ms
78,424 KB
testcase_07 AC 399 ms
77,752 KB
testcase_08 AC 452 ms
78,552 KB
testcase_09 AC 395 ms
78,180 KB
testcase_10 AC 340 ms
77,316 KB
testcase_11 AC 47 ms
61,120 KB
testcase_12 AC 65 ms
72,280 KB
testcase_13 AC 51 ms
64,308 KB
testcase_14 AC 37 ms
52,760 KB
testcase_15 AC 67 ms
71,800 KB
testcase_16 AC 51 ms
63,876 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

Q=int(input())
for _ in range(Q):
  N,X=map(int,input().split())
  score=N*(N+1)//2
  if X<score:
    print(-1)
    continue
  result=[]
  for x in range(N,1,-1):
    l=1
    r=10**18
    while True:
      m=(l+r)//2
      w1=m
      w2=m-(x-1)
      score=x*(w1+w2)//2
      if score>=X:
        r=m
      else:
        l=m+1
      if l==r:
        break
    result.append(l)
    X-=l
  result.append(X)
  print(*result)
0