結果

問題 No.2560 A_1 < A_2 < ... < A_N
ユーザー VvyLwVvyLw
提出日時 2023-12-02 15:15:35
言語 Ruby
(3.3.0)
結果
AC  
実行時間 336 ms / 2,000 ms
コード長 201 bytes
コンパイル時間 180 ms
コンパイル使用メモリ 7,424 KB
実行使用メモリ 15,232 KB
最終ジャッジ日時 2024-09-26 18:20:32
合計ジャッジ時間 5,056 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 82 ms
12,160 KB
testcase_01 AC 160 ms
14,592 KB
testcase_02 AC 175 ms
14,848 KB
testcase_03 AC 163 ms
14,592 KB
testcase_04 AC 173 ms
14,720 KB
testcase_05 AC 177 ms
15,232 KB
testcase_06 AC 336 ms
12,416 KB
testcase_07 AC 329 ms
12,288 KB
testcase_08 AC 332 ms
12,288 KB
testcase_09 AC 326 ms
12,288 KB
testcase_10 AC 325 ms
12,288 KB
testcase_11 AC 80 ms
12,160 KB
testcase_12 AC 80 ms
12,160 KB
testcase_13 AC 78 ms
12,288 KB
testcase_14 AC 79 ms
12,160 KB
testcase_15 AC 80 ms
12,160 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.rb:4: warning: ambiguous first argument; put parentheses or a space even after `-' operator
Syntax OK

ソースコード

diff #

def solve
  n,x=gets.split.map &:to_i
  if n*(n+1)/2>x then
    p -1
    return
  end
  a=[]
  (1..n-1).each{|i|
    a.append(i)
  }
  a.append(x-a.sum)
  puts a.join ' '
end
gets.to_i.times{
  solve
}
0