結果

問題 No.297 カードの数式
ユーザー roiti46
提出日時 2015-12-09 19:04:43
言語 Python2
(2.7.18)
結果
RE  
実行時間 -
コード長 744 bytes
コンパイル時間 259 ms
コンパイル使用メモリ 7,196 KB
実行使用メモリ 8,152 KB
最終ジャッジ日時 2024-09-15 05:53:02
合計ジャッジ時間 1,524 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2 RE * 1
other AC * 19 WA * 2 RE * 2
権限があれば一括ダウンロードができます

ソースコード

diff #

# -*- coding: utf-8 -*-
import sys,copy,math,heapq,itertools as it,fractions,re,bisect,collections as coll

n = int(raw_input())
a = raw_input().split()

x = ""
p = m = 0
for c in a:
    if c == "+": p += 1
    elif c == "-": m += 1
    else: x += c

y = x = sorted(x, reverse = True)
nums = []
for i in xrange(p + m):
    nums.append(int(x.pop()))
nums.append(int("".join(x)))
nums = nums[::-1]

mx = nums[0]
mn = nums[-1]
for i in xrange(p + m):
    if i < p:
        mx += nums[i + 1]
        mn += nums[-i - 2]
    else:
        mx -= nums[i + 1]
        mn -= nums[-i - 2]
if m == 0:
    nums = [""] * (p + 1)
    i = 0
    while y:
        nums[i%(p+1)] = y.pop(0) + nums[i%(p+1)]
        i += 1
    mn = sum(map(int, nums))
print mx, mn
0