結果

問題 No.2567 A_1 > A_2 > ... > A_N
ユーザー ngng628ngng628
提出日時 2023-12-02 16:21:05
言語 Crystal
(1.11.2)
結果
AC  
実行時間 140 ms / 2,000 ms
コード長 310 bytes
コンパイル時間 12,200 ms
コンパイル使用メモリ 294,452 KB
実行使用メモリ 9,984 KB
最終ジャッジ日時 2024-09-26 20:10:17
合計ジャッジ時間 14,686 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 17 ms
7,040 KB
testcase_02 AC 21 ms
9,984 KB
testcase_03 AC 18 ms
9,856 KB
testcase_04 AC 21 ms
9,344 KB
testcase_05 AC 22 ms
9,856 KB
testcase_06 AC 140 ms
5,376 KB
testcase_07 AC 136 ms
5,376 KB
testcase_08 AC 138 ms
5,376 KB
testcase_09 AC 134 ms
5,376 KB
testcase_10 AC 136 ms
5,376 KB
testcase_11 AC 2 ms
5,376 KB
testcase_12 AC 5 ms
5,376 KB
testcase_13 AC 5 ms
5,376 KB
testcase_14 AC 4 ms
5,376 KB
testcase_15 AC 4 ms
5,376 KB
testcase_16 AC 5 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

t = read_line.to_i64
t.times do
  n, x = read_line.split.map &.to_i64
  a = [*(1_i64..n)].reverse
  if a.sum <= x
    t = x - a.sum
    k = t // n  # 全要素に k を足す
    r = t - k * n
    n.times do |i|
      a[i] += k
      a[i] += 1 if i < r
    end
    puts a.join(' ')
  else
    puts -1
  end
end
0