結果
| 問題 | No.297 カードの数式 |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2015-12-09 18:56:25 |
| 言語 | PyPy2 (7.3.15) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 587 bytes |
| 記録 | |
| コンパイル時間 | 158 ms |
| コンパイル使用メモリ | 77,724 KB |
| 最終ジャッジ日時 | 2025-12-03 18:26:13 |
|
ジャッジサーバーID (参考情報) |
judge1 / judge1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 16 WA * 7 |
ソースコード
# -*- 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
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]
print mx, mn