将数字分解为数字位数


9

Repdigits的形式是数a * (10^n - 1)/9a in [-9,9]\{0}(换言之111,-3333,66,这是通过重复只有一个数字由数字)

目标:编写一个使用单个正整数N并打印的程序或函数N = s_1 + s_2 + ... + s_k。每行应该有一个数字,并且这些数字需要右对齐。没有两个求和数应具有相同的位数,并且不允许加零。输出应按升序或降序排序(按位数)

例子:

in:
24192
out:
24192 =
22222 +
 2222 -
  222 -
   33 +
    3

in:
24192
out:
    -7
   -22
  +888
 +1111
+22222
=24192

in:
113
out:
113=    NOT  111+  no empty lines  111+
111+          00+                    
  2            2                     2

如您所见,可以有多种解决方案,并且允许某些艺术自由。每行中允许前导和尾随空格

最短字节数获胜


您是否应该声明一些规则来防止例如仅打印一些规则N
PurkkaKoodari 2014年

3
这已经被涵盖:“没有两个被加数应该具有相同的位数”
nutki 2014年

这些数字也称为重复数字。
Ypnypn

Answers:


6

perl 5-97 92 93 86

$x=$_=pop;{printf"%15s
",$_;$_=$x,s!\d!//,$&!eg,$x-=$_,$i++?s/^\b/+/:s/^/=/;/0/||redo}

输入作为参数给出:

$perl a.pl 2224192
     2224192
    =2222222
       +1111
        +888
         -22
          -7

如果数字中有0,则不会打印任何内容。也许是/0/循环的条件。
feersum 2014年

谢谢,的确是这样。我对perl快捷方式循环感到困惑。他们在最后有条件,但在第一次迭代时仍要检查它。我必须寻找“ +0”。
2014年

实际上,我可以使用来模拟do ... while()仅使用一个额外的字符redo
2014年

2

CJam,55 50字节

'=l:L+Li{_W>"-+"=1$zs(\,)*+:Ii-L,_S*I+\~>\}h;]W%N*

在这里测试。

使用输出格式

      -7
     -22
    +888
   +1111
+2222222
=2224192

打败后我可能会再打高尔夫球。

说明:

'=l:L+Li{_W>"-+"=1$zs(\,)*+:Ii-L,_S*I+\~>\}h;]W%N*
'=                                                 "Push = character.";
  l:L                                              "Read STDIN and store in L.";
     +L                                            "Concatenate, push new copy of L.";
       i                                           "Convert to integer.";
        {                                 }h       "Do-while loop. Leaves the condition on the
                                                    stack. I will use the remainder for that.";
         _W>                                       "Duplicate remainder, compare with -1.";
            "-+"=                                  "Select appropriate sign character.";
                 1$                                "Copy remainder again.";
                   zs                              "Take abs() and convert to string.";
                     (                             "Shift off first digit.";
                      \                            "Swap with string.";
                       ,                           "Get length.";
                        )                          "Increment.";
                         *                         "Repeat digit that often.";
                          +                        "Concatenate with sign.";
                           :I                      "Store in I.";
                             i-                    "Convert to integer. Subtract from remainder.";
                                                   "Now we'll right-justify I.";
                               L,                  "Load input, get length.";
                                 _                 "Duplicate.";
                                  S*               "Repeat space that often.";
                                    I+             "Load string and concatenate.";
                                      \~           "Swap with length. Bitwise complement.";
                                        >          "Take that many characters from the right.";
                                         \         "Swap with remainder.";
                                            ;      "Discard final remainder (0).";
                                             ]     "Wrap in array.";
                                              W%   "Reverse.";
                                                N* "Join with line feeds.";

结果数组将在程序末尾自动打印。


0

JavaScript ES6-145

i=0;f=n=>{return g=n<0,n=Math.abs(n)+'',l=n.length,r=l-1?n[0].repeat(l):n,(i>0?g?'-':'+':n+'=')+'\n'+' '.repeat(i++)+(l-1?r+f((+n-r)*(g?-1:1)):r)}

粘贴到Firefox控制台中。运行为f(24192)

输出为f(24192)

24192=
22222+
 1111+
  888-
   22-
    7

输入后,55它的总和为0(这是一个错误)。
feersum 2014年

By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.