ฉันสมบูรณ์แบบ (ตัวเลข) หรือไม่


26

นี่เป็นความท้าทายครั้งแรกของฉัน!

พื้นหลัง

Perfect numberเป็นจำนวนเต็มบวกซึ่งเท่ากับผลรวมของตัวหารทั้งหมดยกเว้นตัวเอง
ดังนั้นเป็นจำนวนที่สมบูรณ์แบบตั้งแต่6 ในทางกลับกันไม่ได้เพราะ1 + 2 + 3 = 6
121 + 2 + 3 + 4 + 6 = 16 != 12ไม่ได้เป็นเพราะ

งาน

งานของคุณง่ายเขียนโปรแกรมซึ่งจะnพิมพ์ข้อความใดข้อความหนึ่งต่อไปนี้:

ฉันเป็นจำนวนที่สมบูรณ์แบบเพราะd1 + d2 + ... + dm = s == n
ฉันไม่ได้เป็นจำนวนที่สมบูรณ์แบบเพราะd1 + d2 + ... + dm = s [<>] n

ที่ไหน
d1, ... dmมีตัวหารทั้งหมดยกเว้นn คือผลรวมของตัวหารทั้งหมด(อีกครั้งโดยไม่มี) เป็น(ถ้า) หรือ(ถ้า)n
sd1, ..., dmn
[<>]<s < n>s > n

ตัวอย่าง

สำหรับnการเป็น6: "ฉันเป็นจำนวนที่สมบูรณ์แบบเพราะ 1 + 2 + 3 = 6 == 6"
สำหรับnการเป็น12: "ฉันไม่ได้เป็นจำนวนที่สมบูรณ์แบบเพราะ 1 + 2 + 3 + 4 + 6 = 16> 12"
สำหรับnการเป็น13: "ฉันไม่ใช่ตัวเลขที่สมบูรณ์เพราะ 1 = 1 <13"

กฎระเบียบ

  • n ไม่ใหญ่กว่ามาตรฐานภาษาของคุณ intคุณ
  • คุณสามารถอ่านnจากอินพุตมาตรฐานจากอาร์กิวเมนต์บรรทัดคำสั่งหรือจากไฟล์
  • ต้องพิมพ์ข้อความเอาต์พุตบนเอาต์พุตมาตรฐานและไม่มีอักขระเพิ่มเติมที่สามารถปรากฏในเอาต์พุต (อาจมีช่องว่างต่อท้ายหรือขึ้นบรรทัดใหม่)
  • คุณไม่สามารถใช้ฟังก์ชั่นบิวด์อินหรือห้องสมุดใด ๆ ที่จะแก้ปัญหางาน (หรือส่วนหลัก) สำหรับคุณ ไม่มีGetDivisors()หรืออะไรแบบนั้น
  • ใช้ช่องโหว่มาตรฐานอื่น ๆ ทั้งหมด

ผู้ชนะ

นี่คือสั้นที่สุดในหน่วยไบต์ !


@ orlp ไม่ใช่ฉันแก้ไขความท้าทายขอบคุณสำหรับสิ่งนั้น
Zereges

7
ทำไมคุณถึงใช้=และ==ในสมการเดียวกัน? ไม่สมเหตุสมผลเลย มันควรเป็นd1 + d2 + ... + dm = s = nIMO
orlp

คุณสามารถยกตัวอย่างอินพุตและเอาต์พุตตัวอย่างเช่นอินพุต 6 และ 12 ได้ไหม
Zgarb

14
@Zereges นั่นไร้สาระ ไม่มีการมอบหมายอะไรเลย เปรียบเทียบเท่านั้น
orlp

1
@ orlp มันมีจุดมุ่งหมาย
เซเรช

คำตอบ:


4

Pyth, 81 ไบต์

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

ลองใช้ออนไลน์: การสาธิตหรือชุดทดสอบ

คำอธิบาย:

                                 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 ไบต์ (ยังคง FF ในฐาน 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);}}

และเวอร์ชันที่อ่านง่ายขึ้น:

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);
    }
}

ก่อนหน้านี้ไม่ได้ทำงานกับตัวเลขคี่ดังนั้นฉันต้องปรับแต่งบางสิ่ง อย่างน้อยฉันก็โชคดีด้วยจำนวนไบต์อีกครั้ง :)


l == ฉันจะทำงานมากกว่า 255 หรือไม่
dwana

ฉันรู้ว่าซากปรักหักพังของคุณนับไบต์ แต่คุณสามารถบันทึกอักขระโดยแทนที่การเกิดขึ้นสามครั้งสุดท้ายของ [0] ด้วย 'String b' และใช้ 'b' แทน
Craig

6

R, 158 163 157 153 143 141 ไบต์

ฉันคิดว่ายังคงมีพื้นที่สำหรับเล่นกอล์ฟ
แก้ไข:แทนที่ด้วยif(b<n)'<'else if(b>n)'>'else'==' ถูกแทนที่ด้วย ขอบคุณ @plannapus สำหรับอีกสองสามไบต์c('<'[b<n],'>'[b>n],'=='[b==n])paste(...)rbind(...)[-1]

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)

Ungolfed

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
)

ทดสอบการทำงาน

> 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
> 

ควรมีการ+ลงชื่อเข้าใช้ระหว่างตัวหาร
Zereges

@Zereges ฉันได้สังเกตเห็นเพียงแค่ว่าจะแก้ไขและในไม่ช้า
MickyT

+1 สำหรับrbindเคล็ดลับที่ยอดเยี่ยม! คุณสามารถบันทึก 2 ไบต์เป็นพิเศษหากคุณกำหนด2:n-1ให้กับตัวแปรพูดa: จึงกลายเป็นwhich(!n%%1:(n-1)) a[!n%%a](รหัสเต็มแล้ว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 ขอบคุณฉันรู้สึกยินดีมากกับตัวเอง
MickyT

5

Python 2, 183 173 170 ไบต์

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)

ตัวอย่าง:

$ 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

ขอบคุณxnorสำหรับการบันทึก 13 ไบต์!


4
'=<>'[cmp(b,d)]- เข้าร่วมการปฏิวัติ!
orlp

ยอดเยี่ยมขอบคุณ! โอ้รอ ... :)
Celeo

1
@ Celeo ฉันมาด้วยวิธีการแก้ปัญหาที่คล้ายกัน คุณสามารถเขียนสำหรับb%i<1 b%i==0สำหรับ['not ',''][int(d==b)]คุณไม่จำเป็นต้องใช้intเพราะ Python จะแปลงโดยอัตโนมัติ นอกจากนี้คุณสามารถใช้สตริง "not "*(d!=b)mulitplication
xnor

@ xnor ขอบคุณสำหรับคำแนะนำ!
Celeo

1
@Celeo คุณสามารถปรับข้อเสนอแนะ orlp "=<>="[cmp(b,d)%3::3]ที่จะทำงานเป็น
xnor

4

Julia, 161 157 ไบต์

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")

Ungolfed:

# 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 ไบต์

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

สำหรับการเปรียบเทียบการพิมพ์เพียงครั้งเดียว=สามารถทำได้ใน 83 ไบต์

ลองใช้ออนไลน์ในล่าม CJam

มันทำงานอย่างไร

"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 Bytes

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

ด้วยตัวแบ่งบรรทัด:

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

ฉันมีเรื่องกระตุ้นเรื่องนี้และคุณสามารถบันทึก 10 ไบต์โดยการลบ parens รอบนอก'not 'และ'==','>','<'คำสั่งและสลับจาก.เป็น,(เนื่องจากไม่มีการเพิ่มเมื่อprintมีรายการ) นอกจากนี้การย้ายการมอบหมายของคุณเป็น parens ครั้งแรกที่พวกเขาใช้ช่วยคู่และถ้าคุณเปลี่ยนตรรกะเล็กน้อยgrep$a%_<1,1..($a=<>)-1และ$a!=($s=eval)&&'not 'คุณควรโกนอีกไม่กี่! หวังว่าทุกอย่างจะสมเหตุสมผล!
Dom Hastings

2

Lua, 244 231 ไบต์

แข็งแรงเล่นกอล์ฟ:

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))

Ungolfed:

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

การใช้แม่แบบสตริงจะทำงานใน Firefox และ 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

ทับทิม, 174 160 155 136 134 128 122 ไบต์

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

บันทึกอีก 6 ไบต์ :)

ขอบคุณ เคล็ดลับสำหรับการเล่นกอล์ฟในรูบี


คำสั่งพิมพ์ยังรบกวนฉันอยู่ .. และฉันต้องหาวิธีที่จะทำให้คำสั่ง if-statement สั้นลงได้ไหม ความต้องการอื่นประโยคฉันไม่สามารถให้บริการและยอมรับเฉพาะหนึ่งสายต่อกรณี
ยูริ Kazakov

เหลือคำสั่งพิมพ์เดียวเท่านั้น :)
Yuri Kazakov

1

C #, 252 ไบต์

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

ฮัสเซียม , 285 ไบต์

คำเตือน: ทำงานได้เฉพาะกับรุ่นล่าสุดของ Hassium เนื่องจากปัญหากับบรรทัดคำสั่ง args

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);}}

รุ่นที่อ่านเพิ่มเติมได้:

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. ฉันไม่สามารถโน้มน้าวให้ Hassium อ่านอาร์กิวเมนต์บรรทัดคำสั่งของฉันได้ ถ้าผมดำเนินการก็กล่าวว่าmono src/Hassium/bin/Debug/Hassium.exe t.hs 6 System.ArgumentException: The file 6 does not exist.2. วิธีนี้ใช้ไม่ได้กับเวอร์ชันนี้ซึ่งเป็นการกระทำครั้งสุดท้ายก่อนที่จะมีการโพสต์ความท้าทายนี้ โปรดเพิ่มข้อจำกัดความรับผิดชอบในคำตอบของคุณที่ระบุว่าการส่งของคุณไม่เข้าข่าย
Dennis

ฉันลองบน Windows (สร้างโดยใช้ MVS2015) และมีข้อผิดพลาดเดียวกัน
Zereges

นี่เป็นปัญหาที่อัปเดตอย่างแท้จริงเมื่อ 15 นาทีก่อน โคลน Hassium และรวบรวมอีกครั้ง ฉันเสียใจมากที่พบปัญหาเดียวกันนี้
Jacob Misirian

1
มันใช้งานได้ดีกับเวอร์ชันล่าสุด ตอนนี้ถ้าคุณสามารถเพิ่มข้อจำกัดความรับผิดชอบได้ฉันก็ยินดีลบ downvote ของฉัน (โดยวิธีการคุณสามารถ ping ฉันโดยการเพิ่ม@Dennisความคิดเห็นของคุณมิฉะนั้นฉันไม่ได้รับแจ้งการตอบกลับของคุณ)
เดนนิส

@Dennis ฉันเพิ่มเข้าไปขอขอบคุณสำหรับการแจ้งเตือนของคุณ :)
จาค็อบ Misirian

1

MATLAB, 238

ไม่เคยจะสั้นที่สุดของทุกภาษา แต่นี่เป็นความพยายามของฉันกับ 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)])

และนี่คือในรูปแบบที่อ่านง่ายขึ้นเล็กน้อย:

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)])

ฉันจัดการเพื่อเพิ่ม 2 ไบต์โดยไม่ใช้ฟังก์ชั่น แต่คุณเรียกใช้บรรทัดของรหัสและขอหมายเลขเป็นอินพุต เมื่อเรียกใช้จะแสดงผลลัพธ์ในตอนท้าย


1

Perl 6 , 138 ไบต์

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

(การนับจะละเว้นการขึ้นบรรทัดใหม่และการเยื้องเพราะไม่จำเป็น)

@dคืออาร์เรย์ที่ถือตัวหาร
$sถือผลรวมของตัวหาร
$cคือค่าของการเปรียบเทียบระหว่างอินพุตและผลรวมของตัวหาร
(อย่างมีประสิทธิภาพ$cเป็นหนึ่ง-1, 0, 1แต่มันเป็นหนึ่งในOrder::Less , Order::SameหรือOrder::More)

ใน'not 'x?$c,?$cในกรณีนี้ได้อย่างมีประสิทธิภาพเช่นเดียวกับabs $cและxเป็นผู้ประกอบการสตริงซ้ำ

«> == <»( '>', '==', '<' )สั้นสำหรับ
เนื่องจาก$cมีหนึ่งใน-1,0,1เราต้องเลื่อนขึ้นหนึ่งเพื่อให้สามารถใช้เพื่อจัดทำดัชนีเป็นรายการ

ในทางเทคนิคสิ่งนี้จะใช้ได้กับตัวเลขที่สูงกว่า2⁶⁴ แต่ใช้เวลานานเกินไปสำหรับตัวเลขที่สูงกว่า2¹⁶


0

Pyth, 84 ไบต์

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

คำตอบไม่ถูกต้องเพราะฉันปฏิเสธที่จะใช้=และ==ในสมการเดียวกัน


2
+1 สำหรับการปฏิเสธที่จะ "Implement = และ == ในสมการเดียวกัน"
theonlygusti

0

Ruby, 164 ไบต์

->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}"}

ทดสอบ

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 ไบต์

(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)))

เวอร์ชันที่ไม่ถูกปรับแต่ง:

(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 ไบต์

$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"

เทคนิค PoSh ทั่วไปบางอย่างที่ไม่เหมือนกัน

  • สร้างผลรวมแล้วประเมินด้วย iex
  • เปรียบเทียบกับการจัดทำดัชนีอาร์เรย์ gt, lt, eq
  • !! $ d จะประเมินเป็นจริง == 1 สำหรับ $ d = 1 หรือ -1 และ false == 0 สำหรับ $ 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?"<":">"}

1สูญเสียไบต์บางอย่างเกี่ยวกับการทำที่ถูกต้องสำหรับการป้อนข้อมูล ฉันไม่แน่ใจว่าคาดว่าจะ

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 ไบต์

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

ลองมันออนไลน์หรือตรวจสอบกรณีทดสอบทั้งหมด

คำอธิบาย:

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)

ดู 05AB1E นี้เคล็ดลับของฉัน (ส่วนวิธีการใช้พจนานุกรม? )จะเข้าใจว่าทำไม„I€Üเป็น"I am", '€–เป็น"not"และเป็น“€…íÀ‚³,ƒ«“"a perfect number, because"

โดยการใช้ไซต์ของเรา หมายความว่าคุณได้อ่านและทำความเข้าใจนโยบายคุกกี้และนโยบายความเป็นส่วนตัวของเราแล้ว
Licensed under cc by-sa 3.0 with attribution required.