| Bytes | Lang | Time | Link |
|---|---|---|---|
| 045 | APLNARS | 250425T082025Z | Rosario |
| 088 | Tcl | 250424T210348Z | sergiol |
| 052 | Arturo | 230302T044457Z | chunes |
| 009 | Jelly | 220903T000601Z | Unrelate |
| 063 | Prolog SWI | 220901T182621Z | naffetS |
| 015 | Pip | 220901T153901Z | DLosc |
| 020 | Brachylog v1 | 161209T153941Z | Fatalize |
| 011 | Vyxal s | 220831T081749Z | tybocopp |
| 081 | brev | 220831T090252Z | Sandra |
| 048 | Attache | 180216T023533Z | Conor O& |
| 031 | K oK | 180215T210359Z | mkst |
| 010 | Japt | 180129T173449Z | Shaggy |
| 042 | Pari/GP | 180215T175135Z | alephalp |
| 092 | SNOBOL4 CSNOBOL4 | 180215T171417Z | Giuseppe |
| 050 | R | 180215T170253Z | Giuseppe |
| 066 | Java 8 | 170608T083531Z | Kevin Cr |
| 060 | PHP | 170607T224806Z | Jör |
| 045 | Ruby 45 Bytes | 161220T071026Z | Philip W |
| 067 | C# | 161220T112949Z | adrianmp |
| 068 | Python 2 | 161209T145008Z | Rod |
| 029 | APL | 161210T223845Z | Adalynn |
| 134 | Racket | 161212T152445Z | rnso |
| 015 | Actually | 161211T072014Z | Sherlock |
| 081 | Clojure | 161211T234457Z | NikoNyrh |
| 081 | C 77 + 4 = | 161209T151557Z | Mukul Ku |
| 059 | C | 161210T190651Z | Karl Nap |
| 075 | Mathematica | 161210T102731Z | Martin E |
| 096 | Befunge | 161210T023553Z | James Ho |
| 012 | Jelly | 161209T210807Z | Jonathan |
| 045 | Python 2 | 161209T210135Z | xnor |
| 033 | Perl 6 | 161209T201054Z | Brad Gil |
| 062 | Haskell | 161209T195814Z | Zgarb |
| 014 | Pyth | 161209T192333Z | TheBikin |
| 064 | Ruby | 161209T181131Z | Lee W |
| 027 | Perl 27 Bytes | 161209T153807Z | Riley |
| 047 | JavaScript | 161209T145457Z | Washingt |
| 038 | Retina | 161209T162505Z | Martin E |
| 040 | ES6 Javascript | 161209T161556Z | zeppelin |
| 010 | 05AB1E | 161209T152937Z | Adnan |
APL(NARS), 45 chars
{k←≢w←⍕⍵⋄+/⍵∣⍨+/¨⍎¨¨{((⍵⍴1),(k-⍵)⍴2)⊂w}¨⍳k-1}
test:
f←{k←≢w←⍕⍵⋄+/⍵∣⍨+/¨⍎¨¨{((⍵⍴1),(k-⍵)⍴2)⊂w}¨⍳k-1}
f 54321
8331
f 3729105472
505598476
f 12345
2097
f 111
6
f 13
1
f 47852
5842
Tcl, 88 bytes
proc S x {time {append s +$x%($x/10**[incr i]+$x%10**$i)} [expr int(log10($x))]
expr $s}
Jelly, 9 bytes
œṖ€DḌ§⁸%S
Times out on most of the test cases, but agrees with existing solutions on smaller ones. The equivalent DLœṖ€DḌ§⁸%S (for 11 bytes) is considerably faster.
œṖ Partition
D the digits of n
€ at each [1 .. n], individually.
Ḍ Convert each digit slice in each partition back from digits.
§ Sum each partition,
⁸% take n mod each sum,
S and sum the sums.
Generates a large number of extra partitions all of which sum back to the original \$n\$, which don't affect the final sum because \$n \mod n = n\$.
Prolog (SWI), 63 bytes
N+C+M:-N>C,N+C*10+T,M is N mod(N//C+N mod C)+T;M=0.
N-M:-N+1+M.
-1 thanks to Jo King
More interesting:
Prolog (SWI), 104 bytes
X/Y:-number_codes(X,Y).
N-M:-findall(N mod(A+B),(N/C,append(X,Y,C),X\=[],Y\=[],A/X,B/Y),L),sumlist(L,M).
Pip, 15 bytes
a%$+(a^@_)MS,#a
Explanation
a%$+(a^@_)MS,#a
a Program argument: the input number
,# Range(length)
MS Map this function to each of those numbers and sum the results:
a^@_ Split the input number at that index
$+( ) Sum the two halves
a% Take the input number modulo the sum
Using range(len) as the list of indices to split on means that in addition to 4785+2, 478+52, 47+852, and 4+7852, we also have +47852. However, a number modulo itself is 0, which doesn't change the sum, so that's no problem.
Brachylog v1, 20 bytes
:{$@~c#C:@$a+:?r%}f+
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
Vyxal s, 14 11 bytes
-3 bytes thanks to Lyxal
żðvṀṪƛĖ+?$%
Try it online, or verify all test cases.
Explanation:
ż # Range from 1 to the length of the input
v # Map each of those to
ð # A space
Ṁ # Inserted into the input at the nth index (resulting in ["4 7852", "47 852", "478 52", ...])
Ṫ # Remove the last one (which has doesn't space)
ƛ # On each string with the inserted space:
Ė # Evaluate it as Vyxal code (so push both numbers in the string to the stack)
+ # Add them
? # Push the input
$ # Swap the top two items
% # Modulo
# Sum with the s flag
brev, 81 bytes
(c(fn(if(> x y)0(+(f(* x 10)y)(modulo y((compose + quotient&remainder)y x)))))10)
Usually the only other languages I can beat are other lisps 🤷🏻♀️
Attache, 48 bytes
Sum@{N[_]%Sum@Map[N]=>SplitAt[_,1..#_-1]}@Digits
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
K (oK), 31 bytes
Solution:
+/(+/+.:''1_(0,'!#$x)_\:$x)!'x:
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
Japt, 11 10 bytes
¬x@%OvUi+Y
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
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
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.
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.
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
}
}
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
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
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
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.
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.
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));
}
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));
}
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.
Befunge, 101 96 bytes
&10v
`#v_00p:::v>+%\00g1+:9
*v$v+55g00</|_\55+
\<$>>\1-:v ^<^!:-1
+^+^*+55\_$%\00g55
.@>+++++++
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.
Jelly, 12 bytes
ŒṖṖLÐṂḌS€⁸%S
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
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.
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
}
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.
Pyth, 14 bytes
s.e%QssMc`Q]k`
A program that takes input of an integer and prints the result.
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
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
Perl 35 32 27 Bytes
Includes +3 for -p
Saved 8 bytes thanks to Dada
$\+=$_%($`+$')while//g}{
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 ):
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.
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)));