結果

問題 No.297 カードの数式
ユーザー TANIGUCHI KousukeTANIGUCHI Kousuke
提出日時 2015-11-07 23:41:22
言語 Ruby
(3.3.0)
結果
WA  
実行時間 -
コード長 858 bytes
コンパイル時間 182 ms
コンパイル使用メモリ 7,552 KB
実行使用メモリ 12,416 KB
最終ジャッジ日時 2024-09-13 14:05:44
合計ジャッジ時間 3,299 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 88 ms
12,160 KB
testcase_01 AC 86 ms
12,160 KB
testcase_02 AC 85 ms
12,160 KB
testcase_03 AC 86 ms
12,032 KB
testcase_04 AC 87 ms
12,160 KB
testcase_05 AC 86 ms
12,416 KB
testcase_06 WA -
testcase_07 AC 88 ms
12,160 KB
testcase_08 AC 89 ms
12,288 KB
testcase_09 AC 88 ms
12,160 KB
testcase_10 AC 87 ms
12,160 KB
testcase_11 AC 87 ms
12,160 KB
testcase_12 AC 87 ms
12,288 KB
testcase_13 AC 87 ms
12,032 KB
testcase_14 AC 89 ms
12,032 KB
testcase_15 AC 88 ms
12,288 KB
testcase_16 AC 88 ms
12,032 KB
testcase_17 AC 89 ms
12,160 KB
testcase_18 AC 87 ms
12,160 KB
testcase_19 WA -
testcase_20 WA -
testcase_21 AC 87 ms
12,160 KB
testcase_22 AC 88 ms
12,032 KB
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.rb:36: warning: assigned but unused variable - n
Syntax OK

ソースコード

diff #

OP= "+-"
def max(s)
    op = s.take_while {|c| OP.include?(c) }
    num = s.drop(op.size).reverse
    v = []
    until op.empty?
        pm = op.pop
        n = num.pop
        v.unshift( (pm+n).to_i )
    end
    v.unshift(num.join().to_i)
    v.inject(0,&:+)
end

def min(s)
    op = s.take_while {|c| OP.include?(c) }.reverse
    num = s.drop(op.size).reverse
    if op.first == '-'
        op.shift
        op.push('+')
        v = []
        until op.empty?
            pm = op.pop
            n = num.pop
            v.unshift( (pm + n).to_i )
        end
        v.unshift(num.join().to_i * -1)
        v.inject(0,&:+)
    else
        mins = Array.new(op.size + 1,"")
        num.each_with_index {|v, i| mins[i % mins.size] += v }
        mins.map(&:to_i).inject(0,&:+)
    end
end

n = gets.to_i
s = gets.split.sort

puts [max(s), min(s)].join(" ")
0