結果
問題 | No.5 数字のブロック |
ユーザー | siman |
提出日時 | 2015-01-11 13:41:05 |
言語 | Ruby (3.4.1) |
結果 |
AC
|
実行時間 | 85 ms / 5,000 ms |
コード長 | 336 bytes |
コンパイル時間 | 511 ms |
コンパイル使用メモリ | 7,168 KB |
実行使用メモリ | 12,672 KB |
最終ジャッジ日時 | 2024-11-17 22:17:00 |
合計ジャッジ時間 | 3,516 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 34 |
コンパイルメッセージ
Main.rb:4: warning: assigned but unused variable - n Syntax OK
ソースコード
class A def initialize l = gets.chomp.to_i n = gets.chomp.to_i list = gets.chomp.split(' ').map(&:to_i).sort max_size = 0 count = 0 while list.any? if max_size + list.first <= l max_size += list.shift count += 1 else break end end puts count end end A.new