원시 준 완벽 숫자 찾기


17

반 완성 숫자

semiperfect / pseudoperfect 수는 제수의 일부 또는 전부 (자체 제외)의 합과 같은 정수입니다. 모든 제수의 합과 같은 숫자는 완벽합니다.

Divisors of 6 : 1,2,3
      6 = 1+2+3 -> semiperfect (perfect)
Divisors of 28 : 1,2,4,7,14
      28 = 14+7+4+2+1 -> semiperfect (perfect)
Divisors of 40 : 1,2,4,5,8,10,20
      40 = 1+4+5+10+20 or 2+8+10+20 -> semiperfect

원선

프리미티브 준 완전 수는 반 완전 제수가없는 반 완전 수입니다 (자체 제외).

Divisors of 6 : 1,2,3
      6  = 1+2+3 -> primitive
Divisors of 12 : 1,2,3,4,6
      12 = 2+4+6 -> semiperfect

참고로, OEIS 시리즈 사용하십시오 A006036 원시 semiperfect 숫자 및 A005835 semiperfects를 들어.

모든 언어로 프로그램이나 기능을 작성하십시오. 함수 매개 변수 또는 STDIN / 언어에서 가장 가까운 대안으로 숫자 n을 입력으로 취하고 1부터 n까지의 모든 기본 반 완전 숫자를 출력합니다 (포함).

출력은 6[separator]20[separator]28[separator]88...[separator]가 개행, 공백 또는 쉼표로 형식화되어야합니다 . 시작 [분리 자] 나 끝이 없어야합니다.

편집 : 당신은 후행 줄 바꿈을 남길 수 있습니다

입력 :

5

출력 :

입력 :

20

출력 :

6
20

입력 :

100

출력 :

6 20 28 88

채점

이것은 코드 골프이므로 바이트 단위의 가장 짧은 코드가 이깁니다.

허점으로 우리를 속이지 마십시오 :).

골프를 쳤다고 생각되면 골프 코드에 대한 설명을 남길 수있어 기쁩니다.

이 도전에는 이미 좋은 해답이 있으며 천천히 조용해지면서 나는 그 일을 끝내겠습니다. 이 코드 골프의 승자는 월요일 00:00 (월요일 00:00)에 결정됩니다. 답변을 해주신 모든 분께 잘 해주셨습니다.

답변:


8

Pyth, 28 27 바이트

VQI}KhNsMyJf!%KTSNI!@JYeaYK

@Jakube 덕분에 1 바이트

데모.

VQI}KhNsMyJf!%KTSNI!@JYeaYK
                                Implicit:
                                Y = []
                                Q = eval(input())
VQ                              for N in range(Q):
    KhN                         K = N+1
           f    SN              filter T over range(1, N)
            !%KT                the logical not of K%T.
                                This is the list of divisors of K.
          J                     Store the list in J.
         y                      Create all of its subsets.
       sM                       Map each subset to its sum.
  I}K                           If K is in that list: (If K is semiperfect)
                  I!@JY         If the intersection of J (the divisors)
                                and Y (the list of primitive semiperfect numbers)
                                is empty:
                        aYK     Append K to Y
                       e        And print its last element, K.

@AlexA. 감사! 다른 곳에 필요한 build 를 추가 K해야 Y합니다 Y. 그러나, 나는 같은과 마찬가지로 개별적으로 인쇄를 할 수있는 aYKK대신에 eaYK. 그러나 어느 쪽이든 4 바이트입니다.
isaacg 2016 년

3

줄리아, 161 149 바이트

n->(S(m)=!isempty(filter(i->i==unique(i)&&length(i)>1&&all(j->m%j<1,i),partitions(m)));for i=2:n S(i)&&!any(S,filter(k->i%k<1,1:i-1))&&println(i)end)

이것은 정수를 입력으로 받아들이고 숫자를 줄 바꿈으로 구분하여 STDOUT에 인쇄하는 명명되지 않은 함수를 작성합니다. 호출하려면 이름을 지정하십시오 (예 :) f=n->....

언 골프 + 설명 :

# Define a function that determines whether the input is semiperfect
# (In the submission, this is defined as a named inline function within the
# primary function. I've separated it here for clarity.)

function S(m)
    # Get all integer arrays which sum to m
    p = partitions(m)

    # Filter the partitions to subsets of the divisors of m
    d = filter(i -> i == unique(i) && length(i) > 1 && all(j -> m % j == 0, i), p)

    # If d is nonempty, the input is semiperfect
    !isempty(d)
end

# The main function

function f(n)
    # Loop through all integers from 2 to n
    for i = 2:n
        # Determine whether i is semiperfect
        if S(i)
            # If no divisors of i are semiperfect, print i
            !any(S, filter(k -> i % k == 0, 1:i-1) && println(i)
        end
    end
end

예 :

julia> f(5)

julia> f(40)
6
20
28

3

자바 스크립트 ( ES6 ) 172

아래의 스 니펫을 실행하여 테스트

f=
v=>eval("for(n=h=[];n++<v;!t*i&&n>1?h[n]=1:0){for(r=[l=i=t=1];++i<n;)n%i||(h[i]?t=0:l=r.push(i));for(i=0;t&&++i<1<<l;)r.map(v=>i&(m+=m)?t-=v:0,t=n,m=.5)}''+Object.keys(h)")


// Less golfed

ff=v=>
{
   h=[]; // hashtable with numbers found so far

   for (n=1; n <= v; n++)
   {
      r=[1],l=1; // r is the list of divisors, l is the length of this list
      t=1; // used as a flag, will become 0 if a divisor is in h
      for(i=2; i<n; i++)
      {
         if (n%i == 0)
            if (h[i])
               t = 0; // found a divisor in h, n is not primitive
            else
               l = r.push(i); // add divisor to r and adjust l
      }
      if (t != 0) // this 'if' is merged with the for below in golfed code
      { 
         // try all the sums, use a bit mask to find combinations
         for(i = 1; t != 0 && i < 1<<l; i++)
         {
            t = n; // start with n and subtract, if ok result will be 0 
            m = 0.5; // start with mask 1/2 (nice that in Javascript we can mix int and floats)
            r.forEach( v=> i & (m+=m) ? t -= v : 0);
         }
         if (t == 0 && n > 1) h[n] = 1; // add n to the hashmap (the value can be anything)
      }
   }
   // the hashmap keys list is the result
   return '' + Object.keys(h) // convert to string, adding commas
}

(test=()=> O.textContent=f(+I.value))();
<input id=I type=number oninput="test()" value=999><pre id=O></pre>


@ JörgHülsermann 님, 감사합니다
edc65

2

CJam, 54 바이트

이 솔루션은 약간 어색한 느낌이 들지만 CJam에는 답변이 거의 없었기 때문에 어쨌든 게시 할 것이라고 생각했습니다.

Lli),2>{_N,1>{N\%!},_@&!\_,2,m*\f{.*:+}N#)e&{N+}&}fNS*

게시 된 Pyth 솔루션보다 증가한 부분은 CJam에 세트의 모든 하위 집합을 열거 할 연산자가 없다는 사실에서 비롯됩니다. 그래서 가능한 운영자와 함께 그것을 완성하기 위해 약간의 노력이 필요했습니다. 물론 실제로 내가 놓친 간단한 연산자가 있다면 어리석은 것처럼 보일 것입니다. :)

설명:

L     Start stack with empty list that will become list of solutions.
li    Get input N and convert to int.
),2>  Build list of candidate solutions [2 .. N].
{     Start for loop over all candidate solutions.
_     Copy list of previous solutions, needed later to check for candidate being primitive.
N,1>  Build list of possible divisors [1 .. N-1].
{N\%!},  Filter list to only contain actual divisors of N.
_     Check if one of divisors is a previous solution. Start by copying divisor list.
@     Pull copy of list with previous solutions to top of stack
&!    Intersect the two lists, and check the result for empty. Will be used later.
\     Swap top two elements, getting divisor list back to top.
_,    Get length of divisor list.
2,    Put [0 1] on top of stack.
m*    Cartesian power. Creates all 0/1 sequences with same length as divisor list.
\     Swap with divisor list.
f{.*:+}  Calculate element by element product of all 0/1 sequences with divisors,
         and sum up the values (i.e. dot products of 0/1 sequences with divisors).
         The result is an array with all possible divisor sums.
N#)  Find N in list of divisor sums, and covert to truth value.
e&   Logical and with earlier result from primitive test.
{N+}&  Add N to list of solutions if result is true.
}fN  Phew! We finally made it to the end of the for loop, and have a list of solutions.
S*   Join the list of solutions with spaces in between.

온라인으로 사용해보십시오


2

PHP, 263 바이트

function m($a,$n){for($t=1,$b=2**count($a);--$b*$t;$t*=$r!=$n,$r=0)foreach($a as$k=>$v)$r+=($b>>$k&1)*$v;return$t;}for($o=[];$i++<$argn;m($d,$i)?:$o=array_merge($o,range($r[]=$i,3*$argn,$i)))for($d=[],$n=$i;--$n*!in_array($i,$o);)$i%$n?:$d[]=$n;echo join(",",$r);

온라인으로 사용해보십시오!

넓히는

function m($a,$n){ 
  for($t=1,$b=2**count($a);--$b*$t;$t*=$r!=$n,$r=0) #loop through bitmasks
    foreach($a as$k=>$v)$r+=($b>>$k&1)*$v; # loop through divisor array
  return$t;} # returns false for semiperfect numbers 
for($o=[];$i++<$argn;
m($d,$i)?
  :$o=array_merge($o,range($r[]=$i,3*$argn,$i))) # Make the result array and the array of multiples of the result array 
  for($d=[],$n=$i;--$n*!in_array($i,$o);) # check if integer is not in multiples array
    $i%$n?:$d[]=$n; # make divisor array
echo join(",",$r); #Output

1

젤리 , 22 바이트

ÆDṖŒPS€i
ÆDÇ€TL’
RÇÐḟY

온라인으로 사용해보십시오!

설명

ÆDṖŒPS€i - helper function to check if input is a semiperfect number
ÆD       - list of divisors of input
  Ṗ      - except for the last one (the input)
   ŒP    - power set = every possible subset of divisors
     S€  - sum of each subset
       i - return truthy iff input is one of these

ÆDÇ€TL’ - helper function to check if input is a primitive semiperfect number
ÆD       - list of divisors of input
  ǀ     - replace each with if they are a semiperfect number, based on 
           the above helper function. If input is a primitive semiperfect 
           number, we get something like [0,0,0,0,0,94]. 
    T    - get all truthy values.
     L’  - return falsy iff there is only one truthy value

RÇÐḟY    - main link
R        - Range[input]
 ÇÐḟ     - Filter out those elements which are not primitive semiperfect
           numbers, based on the helper function
    Y    - join by newlines.
당사 사이트를 사용함과 동시에 당사의 쿠키 정책개인정보 보호정책을 읽고 이해하였음을 인정하는 것으로 간주합니다.
Licensed under cc by-sa 3.0 with attribution required.