Czy jestem idealny (liczba)?


26

To jest moje pierwsze wyzwanie!

tło

Liczba idealna to dodatnia liczba całkowita, która jest równa sumie wszystkich jej dzielników, z wyjątkiem siebie.
Od tego czasu 6jest to idealna liczba 1 + 2 + 3 = 6.
Z drugiej strony 12nie jest, ponieważ 1 + 2 + 3 + 4 + 6 = 16 != 12.

Zadanie

Twoje zadanie jest proste: napisz program, który nwydrukuje jeden z następujących komunikatów:

Jestem idealną liczbą, ponieważ d1 + d2 + ... + dm = s == n
nie jestem idealną liczbą, ponieważd1 + d2 + ... + dm = s [<>] n

Gdzie
d1, ... dmsą wszystkie dzielniki z nwyjątkiem n.
sjest sumą wszystkich dzielników d1, ..., dm(znowu bez n).
[<>]jest albo <(jeśli s < n) albo >(jeśli s > n).

Przykłady

Za nbycie 6: „Jestem liczbą idealną, ponieważ 1 + 2 + 3 = 6 == 6”
Za nbycie 12: „Nie jestem liczbą idealną, ponieważ 1 + 2 + 3 + 4 + 6 = 16> 12”
Za nbycie 13: „Nie jestem liczbą idealną, ponieważ 1 = 1 <13”

Zasady

  • nnie jest większy niż standard twojego języka int.
  • Możesz czytać nze standardowego wejścia, z argumentów wiersza poleceń lub z pliku.
  • Komunikat wyjściowy musi być wydrukowany na standardowym wyjściu i na wydruku nie mogą pojawiać się żadne dodatkowe znaki (może mieć końcowe białe znaki lub nowy wiersz)
  • Nie możesz używać żadnych wbudowanych funkcji bibliotecznych, które rozwiązałyby zadanie (lub jego główną część). Nie GetDivisors()lub coś takiego.
  • Obowiązują wszystkie inne standardowe luki .

Zwycięzca

To jest więc wygrywa najkrótszy kod w bajtach !


@orlp To nie jest, edytowałem wyzwanie, dzięki za to.
Zereges

7
Dlaczego używacie =i ==w tym samym równaniu? To nie ma sensu. Powinien to być d1 + d2 + ... + dm = s = nIMO.
orlp

Czy możesz podać przykładowe dane wejściowe i wyjściowe, na przykład z danymi wejściowymi 6 i 12?
Zgarb

14
@Zereges To nonsensowne. Nic nie jest przypisane. Tylko porównane.
orlp

1
@orlp Jest przeznaczony.
Zereges

Odpowiedzi:


4

Pyth, 81 bajtów

jd[+WK-QsJf!%QTStQ"I am"" not""a perfect number, because"j" + "J\=sJ@c3"==<>"._KQ

Wypróbuj online: pakiet demonstracyjny lub testowy

Wyjaśnienie:

                                 implicit: Q = input number
               StQ               the range of numbers [1, 2, ..., Q-1]
          f                      filter for numbers T, which satisfy:
           !%QT                     Q mod T != 0
         J                       save this list of divisors in J
      -QsJ                       difference between Q and sum of J
     K                           save the difference in K

jd[                              put all of the following items in a list
                                 and print them joined by spaces: 
                  "I am"           * "I am"
   +WK                  " not"       + "not" if K != 0
"a perfect number, because"        * "a perfect ..."
j" + "J                            * the divisors J joined by " + "
       \=                          * "="
         sJ                        * sum of J
            c3"==<>"               * split the string "==<>" in 3 pieces:
                                        ["==", "<", ">"]
           @        ._K              and take the (sign of K)th one (modulo 3)
                       Q           * Q

9

Java, 255 270 bajtów (nadal FF w bazie 17)

class C{public static void main(String[]a){int i=new Integer(a[0]),k=0,l=0;a[0]=" ";for(;++k<i;)if(i%k<1){l+=k;a[0]+=k+" ";}}System.out.print("I am "+(l==i?"":"not ")+"a perfect number, because "+a[0].trim().replace(" "," + ")+" = "+l+(l==i?" == ":l<i?" < ":" > ")+i);}}

I bardziej czytelna wersja:

class C {
    public static void main(String[] a) {
        int i = new Integer(a[0]), k = 0, l = 0;
        a[0] = " ";
        for(; ++k<i ;){
            if (i % k == 0) {
                l += k;
                a[0] += k + " ";
            }
        }
        System.out.print("I am " + (l == i ? "" : "not ") + "a perfect number, because " + a[0].trim().replace(" "," + ") + " = " + l + (l == i ? " == " : l < i ? " < " : " > ") + i);
    }
}

Wcześniej nie działałem dla liczb nieparzystych, więc musiałem poprawić kilka rzeczy. Przynajmniej znów miałem szczęście z liczbą bajtów. :)


czy l == będę pracować powyżej 255?
dwana

Wiem, że jeśli zniszczysz liczbę bajtów, ale możesz uratować postać, zamieniając ostatnie trzy (z czterech) wystąpień [0] na „Ciąg b” i używaj „b” zamiast nich
Craig

6

R, 158 163 157 153 143 141 141 bajtów

Myślę, że wciąż jest miejsce na golfa.
Edit: Wymieniłem if(b<n)'<'else if(b>n)'>'else'=='z c('<'[b<n],'>'[b>n],'=='[b==n]). paste(...)Jest zastąpiony rbind(...)[-1]. Dzięki @plannapus za jeszcze kilka bajtów.

n=scan();a=2:n-1;b=sum(w<-a[!n%%a]);cat('I am','not'[b!=n],'a perfect number, because',rbind('+',w)[-1],'=',b,c('<'[b<n],'>'[b>n],'==')[1],n)

Nie golfił

n<-scan()             # get number from stdin
w<-which(!n%%1:(n-1)) # build vector of divisors
b=sum(w)              # sum divisors
cat('I am',           # output to STDOUT with a space separator
    'not'[b!=n],      # include not if b!=n
    'a perfect number, because',
    rbind('+',w)[-1], # create a matrix with the top row as '+', remove the first element of the vector
    '=',
    b,                # the summed value
    c(                # creates a vector that contains only the required symbol and ==
        '<'[b<n],     # include < if b<n
        '>'[b>n],     # include > if b>n
        '=='
    )[1],             # take the first element 
    n                 # the original number
)

Testowe uruchomienie

> n=scan();b=sum(w<-which(!n%%1:(n-1)));cat('I am','not'[b!=n],'a perfect number, because',rbind('+',w)[-1],'=',b,c('<'[b<n],'>'[b>n],'==')[1],n)
1: 6
2: 
Read 1 item
I am a perfect number, because 1 + 2 + 3 = 6 == 6
> n=scan();b=sum(w<-which(!n%%1:(n-1)));cat('I am','not'[b!=n],'a perfect number, because',rbind('+',w)[-1],'=',b,c('<'[b<n],'>'[b>n],'==')[1],n)
1: 12
2: 
Read 1 item
I am not a perfect number, because 1 + 2 + 3 + 4 + 6 = 16 > 12
> n=scan();b=sum(w<-which(!n%%1:(n-1)));cat('I am','not'[b!=n],'a perfect number, because',rbind('+',w)[-1],'=',b,c('<'[b<n],'>'[b>n],'==')[1],n)
1: 13
2: 
Read 1 item
I am not a perfect number, because 1 = 1 < 13
> 

+Pomiędzy dzielnikami powinno być logowanie.
Zereges

@Zereges Właśnie to zauważyłem i wkrótce to
naprawię

+1 za genialną rbindsztuczkę! Możesz zapisać 2 dodatkowe bajty, jeśli przypiszesz 2:n-1do zmiennej, powiedz a: w which(!n%%1:(n-1)) ten sposób staje się a[!n%%a]. (Pełny kod jest wtedy n=scan();a=2:n-1;b=sum(w<-a[!n%%a]);cat('I am','not'[b!=n],'a perfect number, because',rbind('+',w)[-1],'=',b,c('<'[b<n],'>'[b>n],'==')[1],n))
plannapus

@plannapus Dzięki, sam byłem z tego bardzo zadowolony.
MickyT,

5

Python 2, 183 173 170 bajtów

b=input();c=[i for i in range(1,b)if b%i<1];d=sum(c);print'I am %sa perfect number because %s = %d %s %d'%('not '*(d!=b),' + '.join(map(str,c)),d,'=<>='[cmp(b,d)%3::3],b)

Przykłady:

$ python perfect_number.py <<< 6
I am a perfect number because 1 + 2 + 3 = 6 == 6
$ python perfect_number.py <<< 12
I am not a perfect number because 1 + 2 + 3 + 4 + 6 = 16 > 12
$ python perfect_number.py <<< 13
I am not a perfect number because 1 = 1 < 13
$ python perfect_number.py <<< 100
I am not a perfect number because 1 + 2 + 4 + 5 + 10 + 20 + 25 + 50 = 117 > 100
$ python perfect_number.py <<< 8128
I am a perfect number because 1 + 2 + 4 + 8 + 16 + 32 + 64 + 127 + 254 + 508 + 1016 + 2032 + 4064 = 8128 == 8128

Dzięki xnor za zaoszczędzenie 13 bajtów!


4
'=<>'[cmp(b,d)]- Dołącz do rewolucji!
orlp

Wspaniale, dziękuje! Och, czekaj ... :)
Celeo

1
@ Celeo Wymyśliłem podobne rozwiązanie. Można pisać b%i<1na b%i==0. Na ['not ',''][int(d==b)], nie potrzebne int, ponieważ Python będzie automatycznie konwertować. Co więcej, możesz użyć mulitplication ciągów "not "*(d!=b).
xnor

@xnor dzięki za sugestie!
Celeo

1
@Celeo Możesz dostosować sugestię orlp do pracy jako "=<>="[cmp(b,d)%3::3].
xnor

4

Julia, 161 157 bajtów

n=int(ARGS[1])
d=filter(i->n%i<1,1:n-1)
s=sum(d)
print("I am ",s!=n?"not ":"","a perfect number, because ",join(d," + ")," = $s ",s<n?"<":s>n?">":"=="," $n")

Nie golfowany:

# Read n as the first command line argument
n = int(ARGS[1])

# Get the divisors of n and their sum
d = filter(i -> n % i == 0, 1:n-1)
s = sum(d)

# Print to STDOUT
print("I am ",
      s != n ? "not " : "",
      "a perfect number, because ",
      join(d, " + "),
      " = $s ",
      s < n ? "<" : s > n ? ">" : "==",
      " $n")

4

CJam, 90 bajtów

"I am"rd:R{R\%!},:D:+R-g:Cz" not"*" a perfect number, because "D'+*'=+D:++'=C+_'=a&+a+R+S*

Dla porównania wydruk pojedynczego dokumentu =można osiągnąć w 83 bajtach.

Wypróbuj online w interpretatorze CJam .

Jak to działa

"I am"  e# Push that string.
rd:R    e# Read a Double from STDIN and save it in R.
{       e# Filter; for each I in [0 ... R-1]:
  R\%!  e# Push the logical NOT of (R % I).
},      e# Keep the elements such that R % I == 0.
:D      e# Save the array of divisors in D.
:+R-g   e# Add the divisors, subtract R and compute the sign of the difference.
:Cz     e# Save the sign in C and apply absolute value.
"not "* e# Repeat the string "not " that many times.

" a perfect number, because "

D'+*    e# Join the divisors, separating by plus signs.
'=+D:++ e# Append a '=' and the sum of the divisors.
'=C+    e# Add the sign to '=', pushing '<', '=' or '>'.
_'=a&   e# Intersect a copy with ['='].
+a+     e# Concatenate, wrap in array and concatenate.
        e# This appends "<", "==" or ">".
R+      e# Append the input number.
S*      e# Join, separating by spaces.

2

Perl, 148 bajtów

$a=<>;$_=join' + ',grep{$a%$_==0}1..$a-1;$s=eval;print"I am ".($s==$a?'':'not ')."a perfect number because $_ = $s ".(('==','>','<')[$s<=>$a])." $a"

Z podziałami linii:

$a=<>;
$_=join' + ',grep{$a%$_==0}1..$a-1;
$s=eval;
print"I am ".($s==$a?'':'not ')."a perfect number because $_ = $s ".(('==','>','<')[$s<=>$a])." $a"

Miałem worku nad tym i można zaoszczędzić 10 bajtów poprzez usunięcie zewnętrznych nawiasów wokół 'not 'i '==','>','<'sprawozdania i przełączania z .do ,(ponieważ nic nie jest dodawane podczas printing listę). Przeniesienie zadań na pareny za pierwszym razem pozwala zaoszczędzić parę, a jeśli zmienisz nieco logikę na grep$a%_<1,1..($a=<>)-1i $a!=($s=eval)&&'not 'powinieneś ogolić jeszcze kilka! Mam nadzieję, że to wszystko ma sens!
Dom Hastings,

2

Lua, 244 231 bajtów

Gra w golfa:

n=io.read("*n")d={}s="1"t=1 for i=2,n-1 do if n%i==0 then table.insert(d,i)s=s.." + "..i t=t+i end end print(("I am%s a perfect number, because %s = %s"):format(t==n and""or" not", s, t..(t==n and" == "or(t>n and" > "or" < "))..n))

Nie golfowany:

n=io.read("*n")
divisors={}
sequence="1"
sum=1
for i=2,n-1 do
    if n%i==0 then 
        table.insert(divisors,i)
        sequence=sequence.." + "..i
        sum=sum+i
    end
end

print(("I am%s a perfect number, because %s = %s"):format(sum==n and""or" not", sequence, sum..(sum==n and" == "or(sum>n and" > "or" < "))..n))

2

JavaScript (ES6), 146

Korzystając z ciągów szablonów, działa w przeglądarce Firefox i najnowszym Chrome.

for(n=prompt(),o=t=i=1;++i<n;)n%i||(t+=i,o+=' + '+i)
alert(`I am ${t-n?'not ':''}a perfect number because ${o} = ${t} ${t<n?'<':t>n?'>':'=='} `+n)


2

Rubinowy, 174 160 155 136 134 128 122 bajtów

n=6;a=[*1...n].reject{|t|n%t>0};b=a.inject(:+)<=>n;print"I am#{" not"*b.abs} a perfect number, because ",a*?+,"<=>"[b+1],n

Zapisano kolejne 6 bajtów :)

Dzięki Wskazówki dotyczące gry w golfa w Ruby


Polecenie print wciąż mnie niepokoi. I muszę znaleźć sposób na skrócenie trójskładnikowej instrukcji if? potrzebuje innej klauzuli, której nie mogę dostarczyć i akceptuje tylko jeden telefon na skrzynkę
Jurij Kazakow

pozostało tylko jedno drukowane oświadczenie :)
Jurij Kazakow

1

C #, 252 bajtów

class A{static void Main(string[]a){int i=int.Parse(a[0]);var j=Enumerable.Range(1,i-1).Where(o=>i%o==0);int k=j.Sum();Console.Write("I am "+(i!=k?"not ":"")+"a perfect number, because "+string.Join(" + ",j)+" = "+k+(k>i?" > ":k<i?" < ":" == ")+i);}}

1

Wapń , 285 bajtów

Oświadczenie: Działa tylko z najnowszą wersją Hcium z powodu problemów z argumentami wiersza poleceń.

func main(){n=Convert.toNumber(args[0]);s=1;l="1";foreach(x in range(2,n-3)){if(n%x==0){l+=" + "+x;s+=x;}}if(s==n)println("I am a perfect number, because "+l+" = "+s+" == "+s);else {print("I am not a perfect number, because "+l+" = "+s);if(s>n)println(" > "+n);else println(" < "+n);}}

Bardziej czytelna wersja:

func main() {
    n = Convert.toNumber(args[0]);
    s = 1;
    l = "1";
    foreach(x in range(2, n - 3)) {
            if (n % x== 0) {
                    l += " + " + x;
                    s += x;
            }
    }
    if (s == n)
            println("I am a perfect number, because " + l + " = " + s + " == " + s);
    else {
            print("I am not a perfect number, because " + l + " = " + s);
            if (s > n)
                    println(" > " + n);
            else
                    println(" < " + n);
    }

}


1
1. Wydaje mi się, że nie przekonuję Hsasa do przeczytania moich argumentów z wiersza poleceń. Jeśli wykonam mono src/Hassium/bin/Debug/Hassium.exe t.hs 6, to mówi System.ArgumentException: The file 6 does not exist.. 2. To nie działa z tą wersją , która jest ostatnim zatwierdzeniem przed opublikowaniem tego wyzwania. Dodaj do swojego oświadczenia, że ​​oświadczenie jest niezgodne z prawdą.
Dennis

Wypróbowałem to w systemie Windows (zbudowanym przy użyciu MVS2015) i dostałem ten sam błąd.
Zereges

Jest to problem, który został zaktualizowany dosłownie 15 minut temu. Sklonuj sód i skompiluj ponownie. Jest mi bardzo przykro, ponieważ napotkałem dokładnie ten sam problem.
Jacob Misirian,

1
Działa dobrze z najnowszą wersją. Teraz, jeśli możesz po prostu dodać zastrzeżenie, chętnie usunę moją opinię. (Nawiasem mówiąc, możesz pingować mnie, dodając @Dennisdo swojego komentarza. W przeciwnym razie nie otrzymam powiadomienia o twojej odpowiedzi.)
Dennis

@Dennis Dodałem go. Dziękujemy za powiadomienie :)
Jacob Misirian,

1

MATLAB, 238

Nigdy nie będę najkrótszym ze wszystkich języków, ale oto moja próba z MATLAB:

n=input('');x=1:n-1;f=x(~rem(n,x));s=sum(f);a='not ';b=strjoin(strtrim(cellstr(num2str(f')))',' + ');if(s>n) c=' > ';elseif(s<n) c=' < ';else c=' == ';a='';end;disp(['I am ' a 'a perfect number, because ' b ' = ' num2str(s) c num2str(n)])

A to w nieco bardziej czytelnej formie:

n=input();      %Read in the number using the input() function
x=1:n-1;        %All integers from 1 to n-1
f=x(~rem(n,x)); %Determine which of those numbers are divisors
s=sum(f);       %Sum all the divisors
a='not ';       %We start by assuming it is not perfect (to save some bytes)
b=strjoin(strtrim(cellstr(num2str(f')))',' + '); %Also convert the list of divisors into a string 
                                                 %where they are all separated by ' + ' signs.
%Next check if the number is >, < or == to the sum of its divisors
if(s>n)  
    c=' > ';    %If greater than, we add a ' > ' to the output string
elseif(s<n) 
    c=' < ';    %If less than, we add a ' < ' to the output string
else
    c=' == ';   %If equal, we add a ' == ' to the output string
    a='';       %If it is equal, then it is a perfect number, so clear the 'not' string
end

%Finally concatenate the output string and display the result
disp(['I am ' a 'a perfect number, because ' b ' = ' num2str(s) c num2str(n)])

Udało mi się zaoszczędzić jeszcze 2 bajty, nie używając funkcji. Zamiast tego uruchamiasz wiersz kodu i żąda on liczby jako danych wejściowych. Po uruchomieniu wyświetla wynik na końcu.


1

Perl 6 , 138 bajtów

$_=get;
my$c=$_ <=>my$s=[+] my@d=grep $_%%*,^$_;
say "I am {
    'not 'x?$c
  }a perfect number, because {
    join ' + ',@d
  } = $s {
    «> == <»[1+$c]
  } $_"

(Liczba ignoruje nowe wiersze i wcięcia, ponieważ nie są potrzebne)

@dto tablica zawierająca dzielniki.
$szawiera sumę dzielników.
$cjest wartością porównania między danymi wejściowymi i sumą dzielników.
(W praktyce $cjest jednym z -1, 0, 1, ale jest naprawdę jeden Order::Less, Order::Samelub Order::More)

W 'not 'x?$c, ?$cw tym przypadku faktycznie jest taka sama, jak abs $ci xjest operatorem ciąg powtórzenie.

«> == <»jest skrótem od ( '>', '==', '<' ).
Ponieważ $cma jeden z nich -1,0,1, musimy go przesunąć w górę o jeden, aby móc go użyć do indeksowania listy.

Technicznie będzie to działać dla liczb znacznie powyżej 2⁶⁴, ale zajmuje nadmiernie dużo czasu dla liczb powyżej 2¹⁶.


0

Pyth, 84 bajtów

jd+,+"I am"*.aK._-QsJf!%QTtUQ" not""a perfect number, because"+.iJm\+tJ[\=sJ@"=<>"KQ

Niepoprawna odpowiedź, ponieważ odmawiam implementacji =i ==w tym samym równaniu.


2
+1 za odmowę „implementacji = i == w tym samym równaniu”.
theonlygusti

0

Ruby, 164 bajtów

->i{t=(1...i).select{|j|i%j==0};s=t.inject &:+;r=['==','>','<'][s<=>i];puts "I am #{'not ' if r!='=='}a perfect number, because #{t.join(' + ')} = #{s} #{r} #{i}"}

Test

irb(main):185:0> ->i{t=(1...i).select{|j|i%j==0};s=t.inject &:+;r=['==','>','<'][s<=>i];puts "I am #{'not ' if r!='=='}a perfect number, because #{t.join(' + ')} = #{s} #{r} #{i}"}.call 6
I am a perfect number, because 1 + 2 + 3 = 6 == 6

irb(main):186:0> ->i{t=(1...i).select{|j|i%j==0};s=t.inject &:+;r=['==','>','<'][s<=>i];puts "I am #{'not ' if r!='=='}a perfect number, because #{t.join(' + ')} = #{s} #{r} #{i}"}.call 12
I am not a perfect number, because 1 + 2 + 3 + 4 + 6 = 16 > 12

irb(main):187:0> ->i{t=(1...i).select{|j|i%j==0};s=t.inject &:+;r=['==','>','<'][s<=>i];puts "I am #{'not ' if r!='=='}a perfect number, because #{t.join(' + ')} = #{s} #{r} #{i}"}.call 13
I am not a perfect number, because 1 = 1 < 13

0

Emacs Lisp, 302 bajtów

(defun p(n)(let((l(remove-if-not'(lambda(x)(=(% n x)0))(number-sequence 1(- n 1)))))(setf s(apply'+ l))(format"I am%s a perfect number, because %s%s = %s %s %s"(if(= s n)""" not")(car l)(apply#'concat(mapcar'(lambda(x)(concat" + "(number-to-string x)))(cdr l)))s(if(= sum n)"=="(if(> sum n)">""<"))n)))

Wersja bez golfa:

(defun perfect (n)
  (let ((l (remove-if-not '(lambda (x) (= (% n x) 0))
              (number-sequence 1 (- n 1)))))
    (setf sum (apply '+ l))
    (format "I am%s a perfect number, because %s%s = %s %s %s" (if (= sum n)"" " not") (car l)
        (apply #'concat (mapcar '(lambda (x) (concat " + " (number-to-string x))) (cdr l)))
        sum (if(= sum n)
            "=="
          (if(> sum n)
              ">"
            "<"))
        n)))

0

PowerShell, 164 bajty

$a=$args[0]
$b=(1..($a-1)|?{!($a%$_)})-join" + "
$c=iex $b
$d=$a.compareto($c)
"I am $("not "*!!$d)a perfect number, because $b = $c $(("==","<",">")[$d]) $a"

Kilka popularnych i nie tak powszechnych sztuczek PoSh;

  • Utwórz sumę, a następnie oceń ją za pomocą iex
  • Porównaj, aby zindeksować tablicę gt, lt, eq
  • !! $ d zwróci wartość true == 1 dla $ d = 1 lub -1, a false == 0 dla $ d = 0

0

awk, 150

n=$0{for(p=i=s=n>1;++i<n;)for(;n%i<1;p+=i++)s=s" + "i;printf"I am%s a perfect number, because "s" = "p" %s "n RS,(k=p==n)?_:" not",k?"==":p<n?"<":">"}

Zmarnowałem trochę bajtów, czyniąc to poprawnym do wprowadzania 1. Nie jestem pewien, czy jest to oczekiwane.

n=$0{
    for(p=i=s=n>1;++i<n;)
        for(;n%i<1;p+=i++)s=s" + "i;
    printf "I am%s a perfect number, because "s" = "p" %s "n RS,
           (k=p==n)?_:" not",k?"==":p<n?"<":">"
}

0

05AB1E , 58 bajtów

„I€ÜIѨ©OIÊi'€–}“€…íÀ‚³,ƒ«“®vy'+}\'=®ODI.S"==><"211S£sèIðý

Wypróbuj online lub sprawdź wszystkie przypadki testowe .

Wyjaśnienie:

Iۆ              # Push dictionary string "I am"
IѨ               # Push the divisors of the input-integer, with itself removed
   ©              # Store it in the register (without popping)
    O             # Get the sum of these divisors
     IÊi   }      # If it's not equal to the input-integer:
        '€–      '#  Push dictionary string "not"
“€…íÀ‚³,ƒ«“       # Push dictionary string "a perfect number, because"
®v   }            # Loop `y` over the divisors:
  y'+            '#  Push the divisor `y`, and the string "+" to the stack
      \           # Discard the final "+"
       '=        '# And push the string "="
®O                # Get the sum of the divisors again
  D               # Duplicate it
I.S               # Compare it to the input-integer (-1 if smaller; 0 if equal; 1 if larger)
   "==><"         # Push string "==><"
         211S£    # Split into parts of size [2,1,1]: ["==",">","<"]
              sè  # Index into it (where the -1 will wrap around to the last item)
I                 # Push the input-integer again
ðý                # Join everything on the stack by spaces
                  # (and output the result implicitly)

Zobacz moją wskazówkę 05AB1E (rozdział Jak korzystać ze słownika? ), Aby zrozumieć, dlaczego „I€Üjest "I am", '€–jest "not"i “€…íÀ‚³,ƒ«“jest "a perfect number, because".

Korzystając z naszej strony potwierdzasz, że przeczytałeś(-aś) i rozumiesz nasze zasady używania plików cookie i zasady ochrony prywatności.
Licensed under cc by-sa 3.0 with attribution required.