結果
問題 | No.1015 おつりは要らないです |
ユーザー | zazaboon |
提出日時 | 2020-04-27 22:25:36 |
言語 | Ruby (3.3.0) |
結果 |
RE
|
実行時間 | - |
コード長 | 1,305 bytes |
コンパイル時間 | 71 ms |
コンパイル使用メモリ | 7,552 KB |
実行使用メモリ | 12,544 KB |
最終ジャッジ日時 | 2024-05-02 02:22:50 |
合計ジャッジ時間 | 5,440 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | RE | - |
testcase_01 | RE | - |
testcase_02 | RE | - |
testcase_03 | RE | - |
testcase_04 | RE | - |
testcase_05 | RE | - |
testcase_06 | RE | - |
testcase_07 | RE | - |
testcase_08 | RE | - |
testcase_09 | RE | - |
testcase_10 | RE | - |
testcase_11 | RE | - |
testcase_12 | RE | - |
testcase_13 | RE | - |
testcase_14 | RE | - |
testcase_15 | RE | - |
testcase_16 | RE | - |
testcase_17 | RE | - |
testcase_18 | RE | - |
testcase_19 | RE | - |
testcase_20 | RE | - |
testcase_21 | RE | - |
testcase_22 | RE | - |
testcase_23 | RE | - |
testcase_24 | RE | - |
testcase_25 | RE | - |
testcase_26 | RE | - |
testcase_27 | RE | - |
testcase_28 | RE | - |
testcase_29 | RE | - |
testcase_30 | RE | - |
testcase_31 | RE | - |
testcase_32 | RE | - |
testcase_33 | RE | - |
testcase_34 | RE | - |
testcase_35 | RE | - |
testcase_36 | RE | - |
コンパイルメッセージ
Main.rb:4: warning: assigned but unused variable - a Main.rb:6: warning: assigned but unused variable - a Main.rb:18: warning: assigned but unused variable - a Main.rb:27: warning: assigned but unused variable - n Main.rb:76: warning: assigned but unused variable - i Syntax OK
ソースコード
exec({'RUBY_THREAD_VM_STACK_SIZE'=>'100000000'},'/usr/bin/ruby', $0) if !ENV['RUBY_THREAD_VM_STACK_SIZE'] require 'prime' def inpf() a=gets.chomp.split(" ").map(&:to_f)end def inps() a=gets.chomp.split(" ")end def copy(a) Marshal.load(Marshal.dump(a)) end def kaijo(n,r = 10**9+7)(n < 2)? 1 : (2..n).inject{|memo,u|memo=(memo*u)%r} end def na(n,d=0) Array.new(n,d)end def na2(n,m,d=0) Array.new(n){Array.new(m,d)}end def na3(n,m,l,d=0) Array.new(n){Array.new(m){Array.new(l,d)}}end def inp() a=gets.chomp.split(" ").map(&:to_i)end def r_up(a, b) (a+b-1)/b end def sum(a) a.inject(:+) end def big(a,b) return (a>b)? a:b end def small(a,b) return (a<b)? a:b end n,x,y,z = inp a = inp a.map!{|u|u+1} a.sort_by!{|a|a%10000*-1} m_c = a.sum{|u|u/10000} a.map!{|u|u%10000} if(z > m_c) (z-m_c).times do a.shift end else a[0] += 10000 * (m_c - z) end if(a.size <= 0) puts "Yes" exit end a.sort_by!{|a|a%5000*-1} m_c = a.sum{|u|u/5000} a.map!{|u|u%5000} if(y > m_c) (y-m_c).times do a.shift end else a[0] += 5000 * (m_c - y) end if(a.size <= 0) puts "Yes" exit end a.sort_by!{|a|a%5000*-1} m_c = a.sum{|u|u/1000} a.map!{|u|u%1000} if(x > m_c) (x-m_c).times do a.shift end else a[0] += 1000 * (m_c - x) end if(a.size <= 0) puts "Yes" exit end puts "No" i = 0