• <ins id="pjuwb"></ins>
    <blockquote id="pjuwb"><pre id="pjuwb"></pre></blockquote>
    <noscript id="pjuwb"></noscript>
          <sup id="pjuwb"><pre id="pjuwb"></pre></sup>
            <dd id="pjuwb"></dd>
            <abbr id="pjuwb"></abbr>

            coreBugZJ

            此 blog 已棄。

            ADDREV - SPOJ 42. Adding Reversed Numbers

            The Antique Comedians of Malidinesia prefer comedies to tragedies. Unfortunately, most of the ancient plays are tragedies. Therefore the dramatic advisor of ACM has decided to transfigure some tragedies into comedies. Obviously, this work is very hard because the basic sense of the play must be kept intact, although all the things change to their opposites. For example the numbers: if any number appears in the tragedy, it must be converted to its reversed form before being accepted into the comedy play.

            Reversed number is a number written in arabic numerals but the order of digits is reversed. The first digit becomes last and vice versa. For example, if the main hero had 1245 strawberries in the tragedy, he has 5421 of them now. Note that all the leading zeros are omitted. That means if the number ends with a zero, the zero is lost by reversing (e.g. 1200 gives 21). Also note that the reversed number never has any trailing zeros.

            ACM needs to calculate with reversed numbers. Your task is to add two reversed numbers and output their reversed sum. Of course, the result is not unique because any particular number is a reversed form of several numbers (e.g. 21 could be 12, 120 or 1200 before reversing). Thus we must assume that no zeros were lost by reversing (e.g. assume that the original number was 12).

            Input

            The input consists of N cases (equal to about 10000). The first line of the input contains only positive integer N. Then follow the cases. Each case consists of exactly one line with two positive integers separated by space. These are the reversed numbers you are to add.

            Output

            For each case, print exactly one line containing only one integer - the reversed sum of two reversed numbers. Omit any leading zeros in the output.

            Example

            Sample input: 
            
            3
            24 1
            4358 754
            305 794
            
            Sample output:
            
            34
            1998
            1
            
             
            水題,LISP SBCL AC 。
             1(let ((num (read)))
             2 (dotimes (i num)
             3  (let* ((str (read-line))
             4         (a (parse-integer (reverse (subseq str 0 (position #\Space str)))))
             5         (b (parse-integer (reverse (subseq str (1+ (position #\Space str))))))
             6         (c (+ a b)))
             7   (do ()
             8    ((not (zerop (rem c 10))))
             9    (setf c (floor (/ c 10))))
            10   (do ()
            11    ((zerop c))
            12    (format t "~d" (rem c 10))
            13    (setf c (floor (/ c 10))))
            14   (format t "~%"))))
            15
            16

            posted on 2012-02-16 16:32 coreBugZJ 閱讀(348) 評論(0)  編輯 收藏 引用 所屬分類: ACMLisp

            久久久久国产一级毛片高清板| 成人午夜精品无码区久久| 欧美亚洲国产精品久久| 欧美一区二区三区久久综合| 久久狠狠高潮亚洲精品| 国内精品久久久久久久涩爱| 久久久久久精品久久久久| 日本精品久久久久中文字幕8 | 久久精品18| Xx性欧美肥妇精品久久久久久| 亚洲欧美另类日本久久国产真实乱对白| 亚洲日本va中文字幕久久| 中文字幕人妻色偷偷久久| 国产午夜福利精品久久2021| 无码人妻精品一区二区三区久久久| 久久99精品国产麻豆宅宅| 久久久久人妻一区二区三区vr| 欧美牲交A欧牲交aⅴ久久| 99久久无色码中文字幕| 大伊人青草狠狠久久| 午夜福利91久久福利| 久久国产免费直播| 蜜臀av性久久久久蜜臀aⅴ麻豆| 色综合久久综合网观看| 久久精品午夜一区二区福利 | 狠狠色丁香久久婷婷综合五月| 久久久久久亚洲精品不卡 | 热久久视久久精品18| 久久综合日本熟妇| 久久久久久噜噜精品免费直播| 欧美一区二区三区久久综合| 国产aⅴ激情无码久久| 色播久久人人爽人人爽人人片aV | 久久久无码精品亚洲日韩京东传媒 | 久久国产成人午夜aⅴ影院| 久久精品国产亚洲av麻豆小说 | 少妇久久久久久被弄到高潮| 色综合久久综精品| 国产 亚洲 欧美 另类 久久| 久久精品嫩草影院| 国产精品九九久久免费视频 |