結果
問題 | No.49 算数の宿題 |
ユーザー | tshig |
提出日時 | 2016-08-18 10:47:26 |
言語 | Ruby (3.3.0) |
結果 |
AC
|
実行時間 | 86 ms / 5,000 ms |
コード長 | 639 bytes |
コンパイル時間 | 82 ms |
コンパイル使用メモリ | 7,552 KB |
実行使用メモリ | 12,416 KB |
最終ジャッジ日時 | 2024-06-02 07:16:29 |
合計ジャッジ時間 | 1,454 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 76 ms
12,160 KB |
testcase_01 | AC | 86 ms
12,288 KB |
testcase_02 | AC | 81 ms
12,160 KB |
testcase_03 | AC | 83 ms
12,416 KB |
testcase_04 | AC | 77 ms
12,160 KB |
testcase_05 | AC | 80 ms
12,160 KB |
testcase_06 | AC | 76 ms
12,416 KB |
testcase_07 | AC | 75 ms
12,288 KB |
testcase_08 | AC | 76 ms
12,160 KB |
testcase_09 | AC | 78 ms
12,288 KB |
コンパイルメッセージ
Syntax OK
ソースコード
class Calc0049 def initialize(args) args = args.map { |l| l.chomp.split(/\s+/) } @s = args.shift.first end def run stack = [] @s.scan(/\d+|[+*]/).each do |t| case t when /\d+/ t = t.to_i if stack.empty? stack.push(t) else op = stack.pop target = stack.pop case op when '+' stack.push(target * t) when '*' stack.push(target + t) end end when '+', '*' stack.push(t) end end stack.pop end end puts Calc0049.new(STDIN.readlines).run if __FILE__ == $0