소수의 피라미드


24

숫자 N이 주어지면 도전은 피라미드 소수 N의 소수를 얻는 것입니다. 내용을 명확히하기 위해 다음은 예입니다.

Input: 4

첫 번째 4소수 를 나열한 다음 그 합계를 계산합니다. 그런 다음 합계의 합계 등을 계산합니다.

  2
    > 5
  3     > 13
    > 8      > 33
  5     > 20
    > 12
  7

최종 결과가 33 임을 알 수 있습니다 . 여기에 N = 8 인 다른 예가 있습니다.

   2
     >   5
   3       >  13
     >   8       >  33
   5       >  20       >  83
     >  12       >  50       > 205
   7       >  30       > 122       > 495
     >  18       >  72       > 290       > 1169
  11       >  42       > 168       > 674
     >  24       >  96       > 384
  13       >  54       > 216
     >  30       > 120
  17       >  66
     >  36
  19

최종 결과는 1169 입니다.

홀수 N, N = 3 인 다른 예가 있습니다.

 2
   > 5
 3     > 13
   > 8
 5

결과적으로 우리에게 13 을 제공합니다

당신의 임무는 0보다 큰 정수를 취하여 최종 결과를 출력하는 프로그램이나 함수를 작성하는 것입니다.

테스트 결과는 다음과 같습니다.

1:  2
2:  5
3:  13
4:  33
5:  83
6:  205
7:  495
8:  1169
9:  2707
10: 6169
11: 13889
12: 30993
13: 68701
14: 151469
15: 332349
16: 725837
17: 1577751
18: 3413221
19: 7349029
20: 15751187
21: 33616925
22: 71475193
23: 151466705
24: 320072415
25: 674721797
26: 1419327223
27: 2979993519
28: 6245693407
29: 13068049163
30: 27297614797
31: 56929779663
32: 118543624847
33: 246475746269
34: 511766428817
35: 1061264813321
36: 2198298700845
37: 4548996804811
38: 9405003164065
39: 19429190057417
40: 40107799133677
41: 82736199371081
42: 170553108953473
43: 351333736092089
44: 723224546040181
45: 1487710742395387
46: 3058157261678325
47: 6282142186547177
48: 12896743408107403
49: 26460652594917673
50: 54262186256186881
51: 111224391050741687
52: 227896496141836195
53: 466805185374509003
54: 955904519939662217
55: 1956988697590280537
56: 4005572366722212927
57: 8196803221276230093
58: 16769645303734608963
59: 34300013739423719561
60: 70136585692535099353
61: 143371352962891226373
62: 292978031452308375001
63: 598482012866917021541
64: 1222083126601616763473
65: 2494459637841415902073
66: 5089478703050176444803
67: 10379794709536133386939
68: 21160351440305258275579
69: 43119914481530819445497
70: 87833066190052490228187
71: 178841897161848754603319
72: 364014682565128163812791
73: 740654046243174781813209
74: 1506496270380756958474835
75: 3063280375436290387756263
76: 6227039507615221644290617
77: 12655020557561801933128885
78: 25712267089927372837530869
79: 52230425385198423845305957
80: 106076955379202815098486497
81: 215397386589448754140867649
82: 437308717912632286770415395
83: 887706233370396897803709611
84: 1801721089699452657985592689
85: 3656329898231436156162865559
86: 7418972676822310377574227797
87: 15051599987013574096449515927
88: 30532404546282900804722616529
89: 61926565462373271494414919017
90: 125582269494835615524470915169
91: 254631689768733901573206365479
92: 516210444730946464864091626473
93: 1046330617753410129672316234861
94: 2120493010460433691014704829565
95: 4296639990460140795780826898943
96: 8704509990931940668688755806845
97: 17631229933967301681217551193565
98: 35706243541395815998303171050377
99: 72298621492552303967009812018997

이것은 이므로 가장 짧은 바이트 수가 이깁니다!


1
한 요소의 목록 (예를 들어 합계를 출력하고 [1169]대해 8허용되는)?
Mego December

@Mego 예, 최종 결과 인 한
Adnan

모든 테스트 사례를 최대 99 개까지 지원해야합니까? 많은 언어 (예 : JavaScript)는 정확성을 잃지 않으면 서 그 숫자를 셀 수 없습니다.
ETHproductions

1
@ETHproductions 최대 27 개까지만 2 ^ 32-1 (부호없는 최대 int 값)보다 낮은 결과를 나타냄
Adnan

답변:


12

J, 15 바이트

p:@i.+/ .*i.!<:

설명:

기본적으로 Mathematica 답변 과 동일 합니다.

p:@i.+/ .*i.!<:
          i.!<:    binomial coefficients
p:@i.              first n primes
     +/ .*         dot product


10

Minkolang 0.14 , 17 바이트

n[i3M$i1-i6M*+]N.

여기를 시도 하고 여기에 모든 테스트 케이스를 확인합니다 .

설명

n                    Take number from input (N)
 [                   Open for loop that repeats N times
  i                  Loop counter (n)
   3M                Pop n and push nth prime (where 2 is the 0th prime)
     $i1-            Max iterations - 1 (which is N-1)
         i           Loop counter (n)
          6M         Pop n,k and push kCn (binomial)
            *+       Multiply and add
              ]      Close for loop
               N.    Output as number and stop.

이항 계수를 사용하는 이전의 여러 답변과 기본적으로 동일한 알고리즘을 사용합니다. 이러한 피라미드가 추가되는 것을 볼 때마다 파스칼의 삼각형이 가장 먼저 떠오를 것입니다. 다른 답변이 왜 이것이 효과가 있는지 설명 하지 않았 으므로 그렇게 할 것입니다.

추가 설명

2
  > [2,3]
3         > [2,3,3,5]
  > [3,5]             > [2,3,3,3,5,5,5,7]
5         > [3,5,5,7]
  > [5,7]
7

보시다시피, 소수 는 최종 결과에 시간이 2,3,5,7나타납니다 1,3,3,1. Lemme는 레이아웃을 약간 변경합니다.

_ _ _ 7
_ _ 5
_ 3
2

3결과가 최종 결과에 기여하는 횟수는 위에서 왼쪽으로 만 이동3 하는 경로 수와 동일합니다 . 여기에는 다음과 같은 세 가지 경로가 있습니다 .3

_    _    _ _
_    _ _    _
_ 3    3    3

일반성을 잃지 않고 방향을 바꿀 수 있습니다. 왼쪽 위 모서리에서 들쭉날쭉 한 가장자리를 따라 각 위치까지 얼마나 많은 경로가 있는지 알고 싶습니다. 나는 그렇게 계산할 수 있습니다 ...

1 1 1 1 1 . . .
1 2 3 4
1 3 6
1 4   .
1       .
.         .
.
.

이 삼각형의 모든 숫자에 대해 왼쪽에서 X 단위이고 위쪽에서 Y 단위이면 해당 위치의 숫자는

여기에 이미지 설명을 입력하십시오

그러나 그것을 사용하는 방식 X+Y = N은 일정하며 X0에서 1 사이의 범위에 있으며 N하나의 대각선을 따라갑니다. 각 계수에 해당 소수를 곱한 다음 더합니다.

이에 대한 자세한 내용 은 파스칼의 삼각형에 관한 Wikipedia 기사를 참조하십시오 .


8
설명이 아주 아름답습니다 +1
Adnan

7

자바 스크립트 ES7 107

27에서 고정 한계를 남용-지루한 점이 실제로 소수를 찾는 방법.

n=>eval("t=2;for(p=[for(v of'012242424626424662642646842')t-=-v];--n;)p=p.slice(0,n).map((v,i)=>v+p[i+1])")

스 니펫 테스트 (배열 이해를 사용하면 Firefox에서만 작동 함)

F=n=>eval("t=2;for(p=[for(v of'012242424626424662642646842')t-=-v];--n;)p=p.slice(0,n).map((v,i)=>v+p[i+1])")

// Less golfed

Q=n=>{
  t=2;
  // Note: the golfed version will return the last computed value, that is p if the loop is entered, else t=2
  p=[for(v of '012242424626424662642646842') t-=-v] // build the array of first 27 primes in p
  while(--n) p = p.slice(0,n).map((v,i)=>v+p[i+1])  
  return p
}  

//TEST
console.log=x=>O.innerHTML+=x+'\n'

for(i=1;i<28;i++)console.log(i+' : '+F(i))
<pre id=O></pre>


정규식 프라임 체크를 사용하여 코드를 줄일 수 있습니까?
n̴̖̋h̷͉̃a̷̭̿h̸̡̅ẗ̵̨́d̷̰̀ĥ̷̳

6

Pyth, 18 바이트

husM.:G2tQ.f}ZPZQ0

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

설명:

husM.:G2tQ.f}ZPZQ0   implicit: Q = input number
          .f    Q0   find the first Q numbers Z >= 0, which satisfy
            }ZPZ        Z appears in the prime factorization of Z
                     this gives the first Q prime numbers
 u      tQ           assign this list to G and repeat the following Q-1 times:
    .:G2               create all subarrays of length 2
  sM                   sum them up and update G
h                    take the first element (=result) and print

또한 18 :s*V.cLtQUQ.f}ZPZQ0
Sp3000

@ Sp3000 아와, 이것은 내 대답과 매우 유사하지만 귀하의 의견을 보지 못했습니다.
orlp


5

Pyth, 16 바이트

s*V.cLtQQ.f}ZPZQ

실제로 매우 간단합니다.

s*V          ; Dot product of
  .cLtQQ     ; the binomial coefficients for n
  .f}ZPZQ    ; and the first n prime numbers.

4

하스켈, 74 바이트

import Data.Numbers.Primes
f n=([]:iterate(zipWith(+)=<<tail)primes)!!n!!0

사용 예 :

*Main> map f [1..12]
[2,5,13,33,83,205,495,1169,2707,6169,13889,30993]

작동 방식 : 모든 소수의 인접 합계를 반복적으로 계산합니다. n반복 의 머리를 가져 가라 .

[2,3,5,7,11,13,17,19,23,29,...]             -- plain primes (and 1st iteration)
[5,8,12,18,24,30,36,42,52,60,...]           -- 2nd iteration of neighbor sums
[13,20,30,42,54,66,78,94,112,128,...]       -- 3rd iteration
[33,50,72,96,120,144,172,206,240,274,...]
...

인덱스 연산자 !!는 0부터 시작하므로 사용하지 않으려면 빈 목록을 추가합니다 !!(n-1).


4

Matlab, 76 바이트

많은 바이트를 절약 한 David에게 감사합니다!

n=input('');x=primes(103);
for s=2:n,x=conv(x,[1 1]);end
disp(num2str(x(n)))

이전 버전, 98 바이트

n=input('');m=1;x=[];while nnz(x)<n
m=m+1;x=primes(m);end
for s=2:n,x=conv(x,[1 1]);end
disp(x(n))

만들기 x사용하는 x=primes(103);경우에만까지 갈 필요가 있기 때문에, 몇 바이트를 저장 N=27(그리고 경우 그것은 중요하지 않습니다 x당신이 필요로하는 것보다 더 많은 항목이 있습니다). conv그래도 좋은 생각이었습니다!
David

@David 감사합니다! 나는 도전 27까지 일이었다 보지 못했다
루이스 Mendo

3

자바 스크립트 (ES6), 121 바이트

n=>eval(`for(p=[],c=0,x=1;c<n;s?p[c++]=x:0)for(s=i=++x;--i>1;)x%i?0:s=0;for(;--c;p=s)for(i=c,s=[];i;)s[c-i]=p[i]+p[--i]`)

설명

대부분의 크기는 소수를 찾는 데서옵니다.

n=>
  eval(`                   // eval used to enable for loops without {} or return

    // Get primes up to n
    for(                   // loop from range 2 to n
      p=[],                // p = primes
      c=0,                 // c = count of primes
      x=1;                 // x = current number to check for primality
      c<n;
      s?p[c++]=x:0         // add the number to the primes if it has no divisors
    )
      for(                 // loop from range 2 to x to check for divisors
        s=                 // s = true if x is a prime
          i=++x;
        --i>1;
      )
        x%i?0:s=0;         // check if x has a divisor

    // Sum primes
    for(;--c;p=s)          // while the new pyramid has pairs to sum
      for(i=c,s=[];i;)     // loop through each pair of the pyramid
        s[c-i]=p[i]+p[--i] // push the sum of the pair to the new pyramid s
  `)                       // implicit: return the final sum

테스트


3

셸 + GNU 및 BSD 유틸리티, 92

echo `primes 1|sed $1q`|sed -r ':
s/(\w+) (\w+)/$((\1+\2)) \2/
t
s/ \w+$//
s/^/echo /e
/ /b'

2

진심으로, 23 바이트

,r`P`M;lD`;pX@dXZ'Σ£M`n

길이 1의 목록으로 결과를 출력합니다. 8 -> [1169]

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

설명:

,r`P`M    push the first n primes as a list
;lD       push 1 minus the length of the list (we'll call this k) ([2,3,5,7],3)
`...`n    call the following function k times:
    ;pX      duplicate the list, pop and discard the first element
    @dX      swap, pop and discard the last element
    Z        zip the two lists
    'Σ£      push the string "Σ" and convert to function
    M        map the function over the list

2

Mathematica 73 바이트

NestWhile[Plus@@@Partition[#,2,1]&,Prime@n~Table~{n,#},Length@#>1&][[1]]&

작동 원리

Prime@n~Table~{n,#}&첫 번째 #소수 목록을 제공합니다 .

Partition[#,2,1]&, 번호 목록을 재 배열 {a, b, c, d ...}{{a,b}, {b,c}, {c,d}...}}.

Plus@@@그런 다음를 반환합니다 {a+b, b+c, c+d...}.

NestWhile#소수 목록으로 시작하고 목록에 Plus@@@Partition...둘 이상의 숫자가있는 한 반복적으로 적용됩니다 .


NestWhile[Plus@@@Partition[#,2,1]&,Prime@n~Table~{n,#},Length@#>1&][[1]]&[4]

33


NestWhile[Plus @@@ Partition[#, 2, 1] &, Prime@n~Table~{n, #}, Length@# > 1 &][[1]] &[5]

83


처음 1000 개의 소수를 해결하려면 약 1/5 초가 걸립니다.

NestWhile[Plus @@@ Partition[#, 2, 1] &, Prime@n~Table~{n, #}, 
 Length@# > 1 &][[1]] &[10^3] // AbsoluteTiming

{0.185611, 1917231113909474354152581359443368948301825453723617274940459548079399 7849439430405641625002631859205971635284844253657654843025188471660669 086894543658003282817783120406680944237436418105659028684953075785393485939389


1

파이썬 2, 159 바이트

m=int(input())
q=[]
x=2
while len(q)<m:
 if not any([x%g<1 for g in q]):q+=[x]
 x+=1
for i in range(m-1):
 for p in q:q+=[q[1]+q[0]];q.pop(0)
 print(q.pop())
print q

1
어쩌면 내가 뭔가를 잃어 버렸습니다 ...하지만 왜 print루프 내부의 명령입니까? 마지막에 한 번만 인쇄하고 싶지 않습니까?
mathmandan

1

은하수 1.4.8 , 26 25 바이트

이 답변은 경쟁하지 않습니다. 이 질문이 게시 된 후 일부 작업이 생성되었습니다 (그러나 반드시이 도전에 대한 것은 아닙니다).

'E&{~F§{G}:y1ba?{_^_}};!

주석을 읽은 후 바이트를 제거 할 수있었습니다. 출력은 단일 요소 목록입니다.


설명

'                        #  read input from the command line
 E                       #  push a list of the first N primes
  &{~                }   #  while loop
     F                   #  push the sum of TOS elements i.e. [A, B, C] => [[A,B], [B,C]]
      §{ }               #  mapping
        G                #  sum i.e. [1, 2, 3] => 6
          :              #  duplicate the TOS
           y             #  push the length of the TOS to the stack
            1            #  push 1 to the stack
             b           #  evaluate equality of the TOS and STOS
              a          #  logical not
               ?{_ _}    #  if-else statement
                  ^      #  pop the TOS
                     ;   #  swap the TOS and STOS
                         #  dump the TOS to the stack
                      !  #  output the TOS

용법

python3 milkyway.py <path-to-code> -i <input-integer>

1

실론, 169 바이트

alias I=>Integer;I s(I*l)=>l.size<2then(l[0]else 0)else s(*l.paired.map((I[2]i)=>i[0]+i[1]));I p(I n)=>s(*loop(2)(1.plus).filter((c)=>!(2:c-2).any((d)=>c%d<1)).take(n));

이것은 두 함수를 정의합니다 – s정수 시퀀스의 피라미드 합을 계산하는 동안 p첫 번째 n소수 시퀀스에서 이것을 호출합니다 .

크기의 n절반 정도가 첫 번째 소수를 찾는 것처럼 보이고 나머지 절반은 피라미드 합계를 계산하는 것 같습니다.

형식화 / 코멘트 된 버전은 다음과 같습니다.

// Sum pyramid of primes
//
// Question:  http://codegolf.stackexchange.com/q/65822/2338
// My answer: http://codegolf.stackexchange.com/a/65879/2338

alias I => Integer;

// Calculate the pyramid sum of some sequence.
I s(I* l) =>
        // If less than two elements ...
        l.size < 2
        // then use the first (only element), or 0 if no such.
        then (l[0] else 0)
        // otherwise,
        else s(*
               // take the iterable of pairs of consecutive elements,
               l.paired
               // and add each of them together.
                .map((I[2] i) => i[0] + i[1])
               // then apply s (recursively) on the result.
               );

// Calculate the pyramid sum of the first n primes.
I p(I n) => s(*
              // the infinite sequence of integers, starting with 2.
              loop(2)(1.plus)
              // filter by primality (using trial division)
              .filter((c) => !(2 : c-2)
                              .any((d) => c%d < 1))
              // then take the first n elements
              .take(n)
              // then apply s on the result.
             );

@FlagAsSpam 완료 ... 죄송합니다, 어떻게 든 그것을 잊었습니다.
Paŭlo Ebermann 2016

1

젤리 , 7 바이트

ÆN€+ƝƬṀ

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

원래 나는 Brachylog 답변을 썼지 1<|~lṗᵐ≠≜{s₂ᶠ+ᵐ}ⁱ~g만 19 바이트가 나왔을 때 다른 언어를 시도해야한다고 결정했습니다.

      Ṁ    The largest value from
     Ƭ     every stage of repeatedly
   +       adding
    Ɲ      adjacent values, starting with
ÆN         nth prime
  €        mapped over the input.

분명히 숫자를 매핑하면 1부터 그 자체까지의 범위로 취급되며 정수는 목록보다 크거나 같은 것으로 정렬됩니다 ''.


1

APL (NARS), 41 자, 82 바이트

{1=≢⍵:↑⍵⋄∇+/¨¯1↓⍵,¨1⌽⍵}∘{⍵↑v/⍨0πv←⍳1+⍵×⍵}

큰 숫자를 사용하려면 입력에서 number_x 유형을 47x로 입력해야합니다. 확인되지 않은 것이있을 수 있습니다. 여기에서 n 소수가 세트 1에 있다고 씁니다 ..n ^ 2 테스트 :

  h←{1=≢⍵:↑⍵⋄∇+/¨¯1↓⍵,¨1⌽⍵}∘{⍵↑v/⍨0πv←⍳1+⍵×⍵}
  h 1
2
  h 2
5
  h 9
2707
  h 24
320072415
  h 47x
6282142186547177 
  h 99x
72298621492552303967009812018997 
  h 200x
433205808657246411262213593770934980590715995899633306941417373


당사 사이트를 사용함과 동시에 당사의 쿠키 정책개인정보 보호정책을 읽고 이해하였음을 인정하는 것으로 간주합니다.
Licensed under cc by-sa 3.0 with attribution required.