Sum of Modulo Sums

34

1

Given an integer n > 9, for each possible insertion between digits in that integer, insert an addition + and evaluate. Then, take the original number modulo those results. Output the sum total of these operations.

An example with n = 47852:

47852 % (4785+2) = 4769
47852 % (478+52) =  152
47852 % (47+852) =  205
47852 % (4+7852) =  716
                  -----
                   5842

Input

A single positive integer in any convenient format, n > 9.

Output

The single integer output following the above construction technique.

Rules

  • You don't need to worry about input larger than your language's default type.
  • Either a full program or a function are acceptable. If a function, you can return the output rather than printing it.
  • Standard loopholes are forbidden.
  • This is so all usual golfing rules apply, and the shortest code (in bytes) wins.

Examples

47852 -> 5842
13 -> 1
111 -> 6
12345 -> 2097
54321 -> 8331
3729105472 -> 505598476

AdmBorkBork

Posted 2016-12-09T14:36:54.233

Reputation: 41 581

Answers

10

05AB1E, 12 10 bytes

v¹¹N¹‚£O%O

Uses the CP-1252 encoding. Try it online!

Adnan

Posted 2016-12-09T14:36:54.233

Reputation: 41 965

3nice, didn't reload and posted D.s¨s.p¨R+¹s%O without seeing this ;P – Magic Octopus Urn – 2016-12-09T15:39:57.493

9

JavaScript, 43 47 bytes

f=
n=>eval(n.replace(/./g,'+'+n+"%($`+ +'$&$'')"))

I.oninput=_=>O.value=f(I.value)
<input id=I>
<input id=O disabled>

Takes input as string.


Edit:

+4 bytes: Leading zeroes in JavaScript converts the number to octal ):

Washington Guedes

Posted 2016-12-09T14:36:54.233

Reputation: 549

2That snippet is pretty neat, seeing it update in real-time like that. – AdmBorkBork – 2016-12-09T15:05:36.173

Can you save a byte by doing (+'$&$''+$\)`? – Neil – 2016-12-09T16:48:18.147

@Neil. In the first iteration $\`` is empty, and it will throw error trying to eval(13+)` (as example). – Washington Guedes – 2016-12-09T17:37:18.080

7

Brachylog, 20 bytes

:{$@~c#C:@$a+:?r%}f+

Try it online!

Explanation

This implements the formula given. The only thing we have to be careful about is when a 0 is in the middle of the input: in that case Brachylog gets pretty quirky, for example it won't accept that a list of integers starting with a 0 can be concatenated into an integer (which would require ignoring the leading 0 — this is mainly programmed that way to avoid infinite loops). Therefore to circumvent that problem, we convert the input to a string and then convert back all splitted inputs into integers.

                       Example Input: 47852

:{               }f    Find all outputs of that predicate: [716,205,152,4769]
  $@                     Integer to String: "47852"
    ~c#C                 #C is a list of two strings which when concatenated yield the Input
                           e.g. ["47","852"]. Leave choice points for all possibilities.
        :@$a             Apply String to integer: [47,852]
            +            Sum: 899
             :?r%        Input modulo that result: 205
                   +   Sum all elements of that list               

Fatalize

Posted 2016-12-09T14:36:54.233

Reputation: 32 976

6

ES6 (Javascript), 42, 40 bytes

EDITS:

  • Got rid of s, -2 bytes

Golfed

M=(m,x=10)=>x<m&&m%(m%x+m/x|0)+M(m,x*10)

Test

M=(m,x=10)=>x<m&&m%(m%x+m/x|0)+M(m,x*10);

[47852,13,111,12345,54321,3729105472].map(x=>console.log(M(x)));

zeppelin

Posted 2016-12-09T14:36:54.233

Reputation: 7 884

If you limit yourself to m<2**31 then you can start with x=1 for a saving of a byte. – Neil – 2016-12-09T19:33:22.533

6

Python 2, 45 bytes

f=lambda n,c=10:n/c and n%(n/c+n%c)+f(n,c*10)

Uses arithmetic rather than strings to divide the input n into parts n/c and n%c, which c recurses through powers of 10.

xnor

Posted 2016-12-09T14:36:54.233

Reputation: 115 687

6

Jelly, 12 bytes

ŒṖṖLÐṂḌS€⁸%S

TryItOnline!

How?

ŒṖṖLÐṂḌS€⁸%S - Main link: n
ŒṖ           - partitions (implicitly treats the integer n as a list of digits)
  Ṗ          - pop - remove the last partition (the one with length one)
    ÐṂ       - keep those with minimal...
   L         - length (now we have all partitions of length 2)
      Ḍ      - undecimal (convert each entry back to an integer)
       S€    - sum each (add the pairs up)
         ⁸   - left argument, n
          %  - mod (vectorises)
           S - sum

Jonathan Allan

Posted 2016-12-09T14:36:54.233

Reputation: 67 804

5

Python 2, 68 64 68 bytes

-4 bytes thanks to atlasologist

lambda x:sum(int(x)%(int(x[:i])+int(x[i:]))for i in range(1,len(x)))

*Input is a string

Rod

Posted 2016-12-09T14:36:54.233

Reputation: 17 588

Save 4: lambda n:sum(int(n)%eval(n[:i]+'+'+n[i:])for i in range(len(n))) – atlasologist – 2016-12-09T15:35:35.540

1

Fails for inputs containing a zero with an 8 or 9 after it and gives wrong answers for others (like the last test case). Numbers starting with a zero are octal. https://repl.it/EmMm

– mbomb007 – 2016-12-09T21:11:22.583

@mbomb007 fixed – Rod – 2016-12-13T17:53:54.187

5

C 77 + 4 = 81 bytes

golfed

i,N,t,r,m;f(n){for(r=0,m=n;n;t=n%10,n/=10,N+=t*pow(10,i++),r+=m%(n+N));return r;}  

Ungolfed

#include<stdio.h>
#include<math.h>

i,N,t,r,m;

f(n)
{
    m=n;
    r=0;
    while(n)
    {
        t=n%10;
        n/=10;
        N+=t*pow(10,i++);
        r+=m%(n+N);
    }
    return r;
}

main()
{
    printf("%d",f(47852));
}

Mukul Kumar

Posted 2016-12-09T14:36:54.233

Reputation: 2 585

You should init r=0 such that if the function is called again the result is correct. It is somewhere in Meta, if you use global variables then you have to deal with the side effects of calling a function more than once. – Karl Napf – 2016-12-10T18:58:40.330

@KarlNapf that good? – Mukul Kumar – 2016-12-10T19:07:31.320

C does not allow default function values, your code does not compile. You can declare r global but inside the function as a statement you can say r=0;, see my answer for example. – Karl Napf – 2016-12-10T19:14:44.650

1@KarlNapf your ans is v2 of my ans...far better thanks – Mukul Kumar – 2016-12-10T19:16:10.353

5

Perl 35 32 27 Bytes

Includes +3 for -p

Saved 8 bytes thanks to Dada

$\+=$_%($`+$')while//g}{

Riley

Posted 2016-12-09T14:36:54.233

Reputation: 11 345

4

C, 59 bytes

t,s;f(n){s=0;t=10;while(t<n)s+=n%(n/t+n%t),t*=10;return s;}

t is 10,100,1000,... and represents the cut in the big number. n/t is the right part and n%t the left part. If t is bigger than the number, it is finished.

Ungolfed and usage:

t,s;
f(n){
 s=0;
 t=10;
 while(t<n)
  s += n % (n/t + n%t),
  t *= 10;
 return s;
}

main(){
 printf("%d\n",f(47852));
}

Karl Napf

Posted 2016-12-09T14:36:54.233

Reputation: 4 131

Ohhh my....please add an explanation. – Mukul Kumar – 2016-12-10T19:09:56.970

@MukulKumar okay like this? – Karl Napf – 2016-12-10T19:19:10.847

yeah that's nice. – Mukul Kumar – 2016-12-10T19:21:17.280

3

Retina, 38 bytes

Byte count assumes ISO 8859-1 encoding.

\B
,$';$_¶$`
G-2`
\d+|,
$*
(1+);\1*

1

Not exactly efficient...

Try it online! (The first line enables a linefeed-separated test suite.)

Explanation

\B
,$';$_¶$`

Between every pair of characters, we insert a comma, everything in front of the match, a semicolon, the entire input, a linefeed, and everything after the match. For input 12345 this gives us:

1,2345;12345
12,345;12345
123,45;12345
1234,5;12345
12345

I.e. every possible splitting of the input along with a pair of the input. We don't need that last line though so:

G-2`

We discard it.

\d+|,
$*

This replaces each number as well as the comma with its unary representation. Since the comma isn't a number, it's treated as zero and simply removed. This adds the two parts in each splitting.

(1+);\1*

This computes the modulo by removing all copies of the first number from the second number.

1

That's it, we simply count how many 1s are left in the string and print that as the result.

Martin Ender

Posted 2016-12-09T14:36:54.233

Reputation: 184 808

3

Pyth, 14 bytes

s.e%QssMc`Q]k`

A program that takes input of an integer and prints the result.

Test suite

How it works

s.e%QssMc`Q]k`   Program. Input: Q
s.e%QssMc`Q]k`Q  Implicit input fill
 .e          `Q  Map over str(Q) with k as 0-indexed index:
        c`Q]k     Split str(Q) into two parts at index k
      sM          Convert both elements to integers
     s            Sum
   %Q             Q % that
s                Sum
                 Implicitly print

TheBikingViking

Posted 2016-12-09T14:36:54.233

Reputation: 3 674

3

Haskell, 62 bytes

f x|m<-mod x=sum[m$div x(10^k)+m(10^k)|(k,_)<-zip[0..]$show x]

Defines a function f. See it pass all test cases.

Zgarb

Posted 2016-12-09T14:36:54.233

Reputation: 39 083

3

Perl 6, 33 bytes

{sum $_ X%m:ex/^(.+)(.+)$/».sum}

Expanded:

{                  # bare block lambda with implicit parameter 「$_」

  sum

    $_             # the input

    X%             # cross modulus

    m :exhaustive /  # all possible ways to segment the input
      ^
      (.+)
      (.+)
      $
    /».sum         # sum the pairs
}

Brad Gilbert b2gills

Posted 2016-12-09T14:36:54.233

Reputation: 12 713

3

Mathematica, 75 bytes

Tr@ReplaceList[IntegerDigits@#,{a__,b__}:>Mod[#,FromDigits/@({a}+{b}+{})]]&

This uses pattern matching on the list of digits to extract all partitions of them into two parts. Each such partition into a and b is then replaced with

Mod[#,FromDigits/@({a}+{b}+{})]

The notable thing here is that sums of lists of unequal length remain unevaluated, so e.g. if a is 1,2 and b is 3,4,5 then we first replace this with {1,2} + {3,4,5} + {}. The last term is there to ensure that it still remains unevaluated when we evenly split an even number of digits. Now the Map operation in Mathematica is sufficiently generalised that it works with any kind of expression, not just lists. So if we map FromDigits over this sum, it will turn each of those lists back into a number. At that point, the expression is a sum of integers, which now gets evaluated. This saves a byte over the more conventional solution Tr[FromDigits/@{{a},{b}}] which converts the two lists first and then sums up the result.

Martin Ender

Posted 2016-12-09T14:36:54.233

Reputation: 184 808

3

Actually, 16 15 bytes

Golfing suggestions welcome! Try it online!

Edit: -1 byte thanks to Teal pelican.

;╗$lr`╤╜d+╜%`MΣ

Ungolfing

         Implicit input n.
;╗       Save a copy of n to register 0.
$l       Yield the number of digits the number has, len_digits.
r        Yield the range from 0 to len_digits - 1, inclusive.
`...`M   Map the following function over that range, with variable x.
  ╤        Yield 10**x.
  ╜        Push a copy of n from register 0.
  d        Push divmod(n, 10**x).
  +        Add the div to the mod.
  ╜        Push a copy of n from register 0.
  %        Vectorized modulo n % x, where x is a member of parition_sums.
         This function will yield a list of modulos.
Σ        Sum the results together.
         Implicit return.

Sherlock9

Posted 2016-12-09T14:36:54.233

Reputation: 11 664

If you move ╜% inside the functions section you don't need to use the ♀ and it'll save you 1 byte :D (;╗$lr╤╜d+╜%MΣ) – Teal pelican – 2016-12-12T15:46:53.250

@Tealpelican Thanks for the tip :D Let me know if you come up with any other golfing suggestions – Sherlock9 – 2016-12-12T16:06:06.550

2

Ruby, 64 bytes

->s{s.size.times.reduce{|a,i|a+s.to_i%eval(s[0,i]+?++s[i..-1])}}

Takes the input as a string

Lee W

Posted 2016-12-09T14:36:54.233

Reputation: 521

Unfortunately, Ruby interprets integer literals beginning with 0 as octal, meaning this fails for the last test case. Here's a 78-byte solution addressing that.

– benj2240 – 2018-02-16T03:14:44.523

2

Befunge, 101 96 bytes

&10v
`#v_00p:::v>+%\00g1+:9
*v$v+55g00</|_\55+
\<$>>\1-:v ^<^!:-1 
+^+^*+55\_$%\00g55
.@>+++++++

Try it online!

Explanation

&              Read n from stdin.
100p           Initialise the current digit number to 1.

               -- The main loop starts here --

:::            Make several duplicates of n for later manipulation.

v+55g00<       Starting top right, and ending bottom right, this
>>\1-:v          routine calculates 10 to the power of the
^*+55\_$         current digit number.

%              The modulo of this number gives us the initial digits.
\              Swap another copy of n to the top of the stack.

_\55+*v        Starting bottom left and ending top left, this
^!:-1\<          is another calculation of 10 to the power of
00g55+^          the current digit number.

/              Dividing by this number gives us the remaining digits.
+              Add the two sets of digits together.
%              Calculate n modulo this sum.
\              Swap the result down the stack bringing n back to the top.

00g1+          Add 1 to the current digit number.
:9`#v_         Test if that is greater than 9.
00p            If not, save it and repeat the main loop.

               -- The main loop ends here --

$$             Clear the digit number and N from the stack.
++++++++       Sum all the values that were calculated.
.@             Output the result and exit.

James Holderness

Posted 2016-12-09T14:36:54.233

Reputation: 8 298

2

APL, 29 bytes

{+/⍵|⍨{(⍎⍵↑R)+⍎⍵↓R}¨⍳⍴1↓R←⍕⍵}

⎕IO must be 1. Explanation (I'm not good at explaining, any imporvements to this are very welcome):

{+/⍵|⍨{(⍎⍵↑R)+⍎⍵↓R}¨⍳⍴1↓R←⍕⍵}
{                           } - Function (Monadic - 1 argument)
                           ⍵  - The argument to the function
                          ⍕   - As a string
                        R←    - Stored in R
                      1↓      - All except the first element
                    ⍳⍴        - 1 to the length
      {           }           - Another function
               ⍵↓R            - R without ⍵ (argument of inner function) leading digits
              ⍎               - As a number
             +                - Plus
       (    )                 - Grouping
         ⍵↑R                  - The first ⍵ digits of R
        ⍎                     - As a number
                   ¨          - Applied to each argument
   ⍵|⍨                        - That modulo ⍵ (outer function argument)
 +/                           - Sum

Zacharý

Posted 2016-12-09T14:36:54.233

Reputation: 5 710

There, it's done. – Zacharý – 2016-12-12T21:35:53.117

2

C#, 67 bytes

n=>{long d=n,s=0,p=1;while(d>9)s+=n%((d/=10)+n%(p*=10));return s;};

Full program with ungolfed, explained method and test cases:

using System;

public class Program
{
    public static void Main()
    {
        Func<long,long> f=
        n=>
        {
            long d = n, // stores the initial number
                 r,         // remainder, stores the last digits
                 s = 0, // the sum which will be returned
                 p = 1; // used to extract the last digit(s) of the number through a modulo operation
            while ( d > 9 ) // while the number has more than 1 digit
            {
                d /= 10;    // divides the current number by 10 to remove its last digit
                p *= 10;    // multiplies this value by 10
                r = n % p;  // calculates the remainder, thus including the just removed digit
                s += n % (d + r);   // adds the curent modulo to the sum
            }
            return s;   // we return the sum
        };

        // test cases:
        Console.WriteLine(f(47852)); //5842
        Console.WriteLine(f(13));   // 1
        Console.WriteLine(f(111));  // 6
        Console.WriteLine(f(12345));    // 2097
        Console.WriteLine(f(54321));    // 8331
        Console.WriteLine(f(3729105472));   // 505598476
    }
}

adrianmp

Posted 2016-12-09T14:36:54.233

Reputation: 1 592

2

Attache, 48 bytes

Sum@{N[_]%Sum@Map[N]=>SplitAt[_,1..#_-1]}@Digits

Try it online!

Explanation

Sum@{N[_]%Sum@Map[N]=>SplitAt[_,1..#_-1]}@Digits
                                          Digits    convert input to digits
    {                                   }@          call lambda with digits as argument
                      SplitAt[_,1..#_-1]            split digits at each partition
              Map[N]=>                              Map N to two-deep elements
          Sum@                                      Takes the sum of each sub array
     N[_]%                                          convert digits to int and vector mod
Sum@                                                sum the resultant array

Conor O'Brien

Posted 2016-12-09T14:36:54.233

Reputation: 36 228

1

Clojure, 91 81 bytes

Edit: this is shorter as it declares an anonymous function (fn[v](->> ...)) and not using ->> macro although it was easier to read and call that way.

(fn[v](apply +(map #(mod v(+(quot v %)(mod v %)))(take 10(iterate #(* 10 %)1)))))

Original:

(defn s[v](->> 1(iterate #(* 10 %))(take 10)(map #(mod v(+(quot v %)(mod v %))))(apply +)))

Generates a sequence of 1, 10, 100, ... and takes first 10 items (assuming input values are less than 10^11), maps to modulos as specified in specs and calculates the sum. Long function names makes this solution quite long but at least even the golfed version should be quite easy to follow.

First I tried juggling strings around but it required tons of boilerplate.

NikoNyrh

Posted 2016-12-09T14:36:54.233

Reputation: 2 361

1

Racket 134 bytes

(let((s(number->string n))(h string->number)(g substring))(for/sum((i(range 1(string-length s))))(modulo n(+(h(g s 0 i))(h(g s i))))))

Ungolfed:

(define (f n)
  (let ((s (number->string n))
        (h string->number)
        (g substring))
    (for/sum ((i (range 1 (string-length s))))
      (modulo n (+ (h (g s 0 i)) (h (g s i)))))))

Testing:

(f 47852)
(f 13)
(f 111)
(f 12345)
(f 54321)
(f 3729105472)

Output:

5842
1
6
2097
8331
505598476

rnso

Posted 2016-12-09T14:36:54.233

Reputation: 1 635

So many close parens ... :D – AdmBorkBork – 2016-12-12T15:57:44.287

It's not as difficult as it appears. – rnso – 2016-12-12T16:34:31.837

1

R, 50 bytes

function(n)sum(n%%(n%%10^(x=1:nchar(n))+n%/%10^x))

Try it online!

Giuseppe

Posted 2016-12-09T14:36:54.233

Reputation: 21 077

1

SNOBOL4 (CSNOBOL4), 92 bytes

	N =INPUT
S	N LEN(X) . L REM . R	:F(O)
	S =S + REMDR(N,L + R)
	X =X + 1	:(S)
O	OUTPUT =S
END

Try it online!

Giuseppe

Posted 2016-12-09T14:36:54.233

Reputation: 21 077

0

Ruby 45 Bytes

->q{t=0;q.times{|x|p=10**x;t+=q%(q/p+q%p)};t}

This is a really neat solution. It is technically correct, but it is super inefficient. It would be much more efficient to write q.to_s.size.times{...}. We use q.times because it saves characters, and the extra number of times it goes through the proc the expression just evaluates to zero.

Philip Weiss

Posted 2016-12-09T14:36:54.233

Reputation: 1

Sorry! This is a 45 byte solution written in ruby. I've edited the post to reflect that. – Philip Weiss – 2016-12-20T20:03:41.480

46 byte runner-up: ->q{(0..q).reduce{|s,x|p=10**x;s+q%(q/p+q%p)}} – Philip Weiss – 2016-12-20T20:25:58.073

0

PHP, 60 bytes

for($n=1;($n*=10)<$a=$argn;)$r+=$a%(($a/$n^0)+$a%$n);echo$r;

Try it online!

Jörg Hülsermann

Posted 2016-12-09T14:36:54.233

Reputation: 13 026

0

Java 8, 127 66 bytes

n->{long m=n,r=0,p=1;for(;m>9;r+=n%((m/=10)+n%(p*=10)));return r;}

-61 bytes by creating a port of @adrianmp's C# answer.

Try it here.

Kevin Cruijssen

Posted 2016-12-09T14:36:54.233

Reputation: 67 575

0

Japt, 11 10 bytes

¬x@%OvUi+Y

Try it


Explanation

               :Implicit input of string U
¬              :Split to an array of characters
  @            :Pass each character at index Y through a function
      Ui+Y     :  Insert a + in U at index Y
    Ov         :  Evaluate as Japt
   %           :  Modulo U by the above
 x             :Reduce by addition

Shaggy

Posted 2016-12-09T14:36:54.233

Reputation: 24 623

1This was marked as low quality :P – Christopher – 2018-01-29T17:51:48.930

0

Pari/GP, 42 bytes

n->sum(i=1,logint(n,10),n%(n\10^i+n%10^i))

Try it online!

alephalpha

Posted 2016-12-09T14:36:54.233

Reputation: 23 988

0

K (oK), 31 bytes

Solution:

+/(+/+.:''1_(0,'!#$x)_\:$x)!'x:

Try it online!

Example:

+/(+/+.:''1_(0,'!#$x)_\:$x)!'x:47852
5842

Explanation:

Most of the code goes to building up the lists out of the input. Am wondering if there is a trick I'm missing.

{.:''1_(0,'!#$x)_\:$x}47852
(4 7852
47 852
478 52
4785 2)

Full breakdown:

+/(+/+.:''1_(0,'!#$x)_\:$x)!'x: / the solution
                             x: / store input as variable x
                           !'   / mod (!) each-both (')
  (                       )     / do this together
                        $x      / string x
                     _\:        / cut (_) each-left (\:)
            (       )           / do this together
                  $x            / string x
                 #              / count length of the string
                !               / til, range 0..n-1
             0,'                / prepend 0 to each
          1_                    / drop the first one
      .:''                      / value (.:) each-each (nested)
     +                          / flip rows and columns
   +/                           / sum up the columns
+/                              / sum up results of the modulo

streetster

Posted 2016-12-09T14:36:54.233

Reputation: 3 635