300754: CF143B. Help Kingdom of Far Far Away 2

Memory Limit:256 MB Time Limit:2 S
Judge Style:Text Compare Creator:
Submit:0 Solved:0

Description

Help Kingdom of Far Far Away 2

题意翻译

给你一个数,要求以一定格式输出。 这个数的整数部分,每三位加一个‘,’,如12345678将写为 $12,345,678$ 如果这个数有小数部分,把他的小数部分变为两位。 (不够补0,超出舍去) 将这个已改变的设为%d。 则如果这个数有负号输出 `($%d)` 没有符号就输出 `$%d` 当数字的整数部分不为0时,保证整数部分第一个数不是0。

题目描述

For some time the program of rounding numbers that had been developed by the Codeforces participants during one of the previous rounds, helped the citizens of Far Far Away to convert numbers into a more easily readable format. However, as time went by, the economy of the Far Far Away developed and the scale of operations grew. So the King ordered to found the Bank of Far Far Away and very soon even the rounding didn't help to quickly determine even the order of the numbers involved in operations. Besides, rounding a number to an integer wasn't very convenient as a bank needed to operate with all numbers with accuracy of up to $ 0.01 $ , and not up to an integer. The King issued yet another order: to introduce financial format to represent numbers denoting amounts of money. The formal rules of storing a number in the financial format are as follows: - A number contains the integer part and the fractional part. The two parts are separated with a character "." (decimal point). - To make digits in the integer part of a number easier to read, they are split into groups of three digits, starting from the least significant ones. The groups are separated with the character "," (comma). For example, if the integer part of a number equals 12345678, then it will be stored in the financial format as 12,345,678 - In the financial format a number's fractional part should contain exactly two digits. So, if the initial number (the number that is converted into the financial format) contains less than two digits in the fractional part (or contains no digits at all), it is complemented with zeros until its length equals 2. If the fractional part contains more than two digits, the extra digits are simply discarded (they are not rounded: see sample tests). - When a number is stored in the financial format, the minus sign is not written. Instead, if the initial number had the minus sign, the result is written in round brackets. - Please keep in mind that the bank of Far Far Away operates using an exotic foreign currency — snakes ($), that's why right before the number in the financial format we should put the sign "$". If the number should be written in the brackets, then the snake sign should also be inside the brackets. For example, by the above given rules number 2012 will be stored in the financial format as "$2,012.00" and number -12345678.9 will be stored as "($12,345,678.90)". The merchants of Far Far Away visited you again and expressed much hope that you supply them with the program that can convert arbitrary numbers to the financial format. Can you help them?

输入输出格式

输入格式


The input contains a number that needs to be converted into financial format. The number's notation length does not exceed $ 100 $ characters, including (possible) signs "-" (minus) and "." (decimal point). The number's notation is correct, that is: - The number's notation only contains characters from the set {"0" – "9", "-", "."}. - The decimal point (if it is present) is unique and is preceded and followed by a non-zero quantity on decimal digits - A number cannot start with digit $ 0 $ , except for a case when its whole integer part equals zero (in this case the integer parts is guaranteed to be a single zero: "0"). - The minus sign (if it is present) is unique and stands in the very beginning of the number's notation - If a number is identically equal to $ 0 $ (that is, if it is written as, for example, "0" or "0.000"), than it is not preceded by the minus sign. - The input data contains no spaces. - The number's notation contains at least one decimal digit.

输出格式


Print the number given in the input in the financial format by the rules described in the problem statement.

输入输出样例

输入样例 #1

2012

输出样例 #1

$2,012.00

输入样例 #2

0.000

输出样例 #2

$0.00

输入样例 #3

-0.00987654321

输出样例 #3

($0.00)

输入样例 #4

-12345678.9

输出样例 #4

($12,345,678.90)

说明

Pay attention to the second and third sample tests. They show that the sign of a number in the financial format (and consequently, the presence or absence of brackets) is determined solely by the sign of the initial number. It does not depend on the sign of the number you got after translating the number to the financial format.

Input

题意翻译

给你一个数,要求以一定格式输出。 这个数的整数部分,每三位加一个‘,’,如12345678将写为 $12,345,678$ 如果这个数有小数部分,把他的小数部分变为两位。 (不够补0,超出舍去) 将这个已改变的设为%d。 则如果这个数有负号输出 `($%d)` 没有符号就输出 `$%d` 当数字的整数部分不为0时,保证整数部分第一个数不是0。

加入题单

算法标签: