結果
問題 | No.49 算数の宿題 |
ユーザー | tanukidon |
提出日時 | 2018-03-24 20:28:24 |
言語 | Ruby (3.3.0) |
結果 |
AC
|
実行時間 | 90 ms / 5,000 ms |
コード長 | 327 bytes |
コンパイル時間 | 42 ms |
コンパイル使用メモリ | 7,552 KB |
実行使用メモリ | 12,288 KB |
最終ジャッジ日時 | 2024-06-02 07:21:56 |
合計ジャッジ時間 | 1,441 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 90 ms
12,032 KB |
testcase_01 | AC | 82 ms
12,288 KB |
testcase_02 | AC | 80 ms
12,160 KB |
testcase_03 | AC | 81 ms
12,288 KB |
testcase_04 | AC | 89 ms
12,160 KB |
testcase_05 | AC | 82 ms
12,160 KB |
testcase_06 | AC | 82 ms
12,288 KB |
testcase_07 | AC | 81 ms
12,288 KB |
testcase_08 | AC | 83 ms
12,288 KB |
testcase_09 | AC | 78 ms
12,160 KB |
コンパイルメッセージ
Syntax OK
ソースコード
n = gets.chomp n << "E" a = [] c ="" ans = 0 n.each_char do |i| if i =~ /\d/ c << i elsif i =~ /[+*]/ a << c.to_i c = "" a << i elsif i == "E" a << c.to_i end end ans = a[0] a = a.drop(1) a.size.times do |i| if a[i] == "*" ans += a[i+1] elsif a[i] == "+" ans *= a[i+1] end end p ans