結果

問題 No.2567 A_1 > A_2 > ... > A_N
ユーザー timitimi
提出日時 2023-12-02 15:35:26
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 346 ms / 2,000 ms
コード長 245 bytes
コンパイル時間 542 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 84,052 KB
最終ジャッジ日時 2024-09-26 18:56:44
合計ジャッジ時間 4,893 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
51,584 KB
testcase_01 AC 101 ms
80,604 KB
testcase_02 AC 107 ms
82,808 KB
testcase_03 AC 101 ms
81,780 KB
testcase_04 AC 108 ms
82,560 KB
testcase_05 AC 108 ms
84,052 KB
testcase_06 AC 342 ms
77,312 KB
testcase_07 AC 328 ms
77,056 KB
testcase_08 AC 346 ms
77,516 KB
testcase_09 AC 326 ms
76,708 KB
testcase_10 AC 338 ms
78,016 KB
testcase_11 AC 45 ms
53,120 KB
testcase_12 AC 59 ms
64,384 KB
testcase_13 AC 49 ms
59,264 KB
testcase_14 AC 47 ms
58,752 KB
testcase_15 AC 59 ms
63,744 KB
testcase_16 AC 51 ms
59,648 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N=int(input())
for _ in range(N):
  x,y=map(int, input().split())
  A=[i for i in range(x,0,-1)]
  s=(1+x)*x//2 
  if s>y:
    print(-1)
  else:
    k=y-s
    for j in range(x):
      A[j]+=k//x 
      if j+1<=k%x:
        A[j]+=1 
    print(*A)
0