結果

問題 No.2567 A_1 > A_2 > ... > A_N
ユーザー ngng628ngng628
提出日時 2023-12-02 16:20:29
言語 Crystal
(1.11.2)
結果
RE  
実行時間 -
コード長 279 bytes
コンパイル時間 13,510 ms
コンパイル使用メモリ 295,728 KB
実行使用メモリ 6,948 KB
最終ジャッジ日時 2024-09-26 20:09:33
合計ジャッジ時間 14,755 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 RE -
testcase_02 RE -
testcase_03 RE -
testcase_04 RE -
testcase_05 RE -
testcase_06 AC 132 ms
5,376 KB
testcase_07 AC 134 ms
5,376 KB
testcase_08 AC 134 ms
5,376 KB
testcase_09 AC 132 ms
5,376 KB
testcase_10 AC 131 ms
5,376 KB
testcase_11 AC 2 ms
5,376 KB
testcase_12 AC 4 ms
5,376 KB
testcase_13 AC 3 ms
5,376 KB
testcase_14 AC 4 ms
5,376 KB
testcase_15 AC 3 ms
5,376 KB
testcase_16 AC 4 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

t = read_line.to_i64
t.times do
  n, x = read_line.split.map &.to_i64
  a = [*(1..n)].reverse
  if a.sum <= x
    t = x - a.sum
    k = t // n
    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