Alguns Primos Solitários

10

Eu sei, eu sei, mais um desafio primos ...

Relacionado

Um nobre solitário (ou isolado) é um número primo ptal que p-2, p+2, p-4, p+4... p-2k, p+2kpara alguns ksão todos composta. Chamamos esse primo de primo kth-times-isolated.

Por exemplo, um primo da quinta vez isolado é 211, pois todos 201, 203, 205, 207, 209, 213, 215, 217, 219, 221são compostos. ( p-2*5=201, p-2*4=203, Etc.)

Desafio

Dado dois números inteiros de entrada, n > 3e k > 0, produz o menor kprimo th vezes isolado que é estritamente maior que n.

Por exemplo, para k = 5e nem qualquer faixa 4 ... 210, a saída deve ser 211, pois esse é o menor primo isolado da quinta vez estritamente maior que a entrada n.

Exemplos

n=55 k=1
67

n=500 k=1
503

n=2100 k=3
2153

n=2153 k=3
2161

n=14000 k=7
14107

n=14000 k=8
14107

Regras

  • Se aplicável, você pode supor que a entrada / saída caiba no tipo Inteiro nativo do seu idioma.
  • A entrada e saída podem ser fornecidas por qualquer método conveniente .
  • Um programa completo ou uma função são aceitáveis. Se uma função, você pode retornar a saída em vez de imprimi-la.
  • As brechas padrão são proibidas.
  • Isso é portanto todas as regras usuais de golfe se aplicam e o código mais curto (em bytes) vence.
AdmBorkBork
fonte
Um primo da 3ª vez isolado também é um primo da 2ª vez isolado?
Erik the Outgolfer
@EriktheOutgolfer Os dois últimos casos de teste parecem confirmar isso.
Kevin Cruijssen
1
Os casos de teste do @KevinCruijssen não fazem parte da especificação do desafio.
Erik the Outgolfer
1
@EriktheOutgolfer Sim, um kTH-vezes-isolado é também, por definição, um k-1th, k-2th, etc.
AdmBorkBork
@AdmBorkBork Só queria verificar, obrigado.
Erik the Outgolfer

Respostas:

3

Geléia , 17 13 bytes

_æR+⁼ḟ
‘ç1#Ḥ}

Experimente online!

Como funciona

‘ç1#Ḥ}  Main link. Left argument: n. Right argument: k

‘       Increment; yield n+1.
    Ḥ}  Unhalve right; yield 2k.
 ç1#    Call the helper link with arguments m = n+1, n+2, ... and k until 1 one
        them returns a truthy value. Return the matching [m].


_æR+⁼ḟ  Helper link. Left argument: m. Right argument: k

_       Subtract; yield m-2k.
   +    Add; yield m+2k.
 æR     Prime range; yield the array of primes in [m-2k, ..., m+2k].
     ḟ  Filterfalse; yield the elements of [m] that do not occur in [k], i.e., [m]
        if m ≠ 2k and [] otherwise.
        The result to the left will be non-empty when m = 2k, as there always is
        a prime in [0, ..., 2m], since m > n > 3.
    ⁼   Test the results to both sides for equality.
        This yields 1 iff m is the only prime in [m-2k, ..., m+2k].
Dennis
fonte
3

Casca , 13 bytes

ḟ§=;ofṗM+ṡD⁰→

Experimente online!

Explicação

Bem direto.

ḟ§=;ofṗM+ṡD⁰→  Inputs are k and n.
            →  Increment n
ḟ              and find the first number m >= n+1 such that:
         ṡD⁰    Take symmetric range [-2k,..,2k].
       M+       Add m to each.
    ofṗ         Keep those that are prime.
 §=             Check equality with
   ;            the singleton [m].
Zgarb
fonte
2

Java 8, 144 143 bytes

(n,k)->{for(k*=2;;)if(p(++n)>1){int i=-k;for(;i<=k&p(n+i)<2|i==0;i+=2);if(i>k)return n;}}int p(int n){for(int i=2;i<n;n=n%i++<1?0:n);return n;}

Explicação:

Experimente online.

(n,k)->{                      // Method with two integer parameters and integer return-type
  for(k*=2;                   //  Multiply `k` by 2
      ;)                      //  Loop indefinitely
    if(p(++n)>1){             //   Increase `n` by 1 before every iteration with `++n`
                              //   And if it's a prime:
      int i=-k;for(;i<=k      //    Loop `i` from `-k` to `k` (inclusive)
        &p(n+i)<2|i==0;       //    As long as `n+i` is not a prime (skipping `n` itself)
        i+=2);                //    And iterate in steps of 2 instead of 1
      if(i>k)                 //    If we've reached the end of the loop:
        return n;}}           //     We've found our result, so return it

// Separated method to check if `n` is a prime
// `n` is a prime if it remained unchanged, and not when it became 0 or 1
int p(int n){for(int i=2;i<n;n=n%i++<1?0:n);return n;}
Kevin Cruijssen
fonte
2

Python 2 , 105 104 bytes

-1 byte graças a ovs

n,k=input()
n+=1
while sum(all(x%i for i in range(2,x))^(x==n)for x in range(n-k*2,2*k-~n)):n+=1
print n

Experimente online!

Cajado
fonte
2

Stax , 14 bytes

åΣ▀ë F▬&■º↔╔^∞

Execute e depure

Esta é a representação ascii correspondente.

w^x:r{Hn+|p_!=m0#

w                   while; run the rest of the program until a falsy value remains
 ^                  increment candidate value.
  x:r               [-x, ..., -1, 0, 1, ... x] where x is the first input
     {        m     map using block, using k from -x to x
      Hn+           double and add to candidate value - this is "p+2k"
         |p         is it prime? produces 0 or 1
           _!       k is zero?
             =      two values are equal; always true for a passing candidate
               0#   any falses left after mapping? if so, continue running
recursivo
fonte
2

JavaScript (Node.js) , 94 92 89 bytes

f=(n,k)=>(Q=y=>y<-k||(P=(a,b=2)=>a>b?a%b&&P(a,b+1):1)(n+2*y)^!!y&&Q(--y))(k,++n)?n:f(n,k)

Experimente online!

Misteriosamente, mais jogadores acabam com o estouro da pilha. Somente isso funciona no tamanho de 14000.

Finalmente, um golfe que não vai acabar com um estouro de pilha em 14000.

Explicação

f=(n,k)=>            // Two inputs
 (Q=y=>              // Function checking whether all numbers in 
                     // [n-2*k, n+2*k] except n are all composite
  y<-k               // The counter runs from k to -k
                     // If none breaks the rule, return true
  ||(P=(a,b=2)=>     // Function checking primality
   a>b?              // Check if a>b
   a%b&&P(a,b+1)     // If a>b and a%b==0 return false, else proceed
   :1                // If a<=b return 1 (prime)
  )(n+2*y)^!!y       // If n+2*y is prime, then y must be 0
                     // If n+2*y is not prime, then y must be non-zero
                     // If none of the conditions are met, return false
  &&Q(--y)           // Else proceed to the next counter
 )
 (k,++n)?            // Add 1 to n first, then start the check
 n                   // If conditions are met, return n
 :f(n,k)             // Else proceed to the next n.
Shieru Asakoto
fonte
1

C (gcc) , 113 bytes

P(n,d,b){for(b=d=n>1;++d<n;)b=b&&n%d;n=b;}f(n,k,i,f){for(f=n;f;)for(f=i=!P(++n);i++<k;f|=P(n+i+i)|P(n-i-i));f=n;}

Experimente online!

Jonathan Frech
fonte
1

Ruby + -rprime, 73 71 61 57 bytes

->n,k{n+=1;(-k..k).all?{|i|(i*2+n).prime?^(i!=0)}?n:redo}

Experimente online!

É bom estar aprendendo! Estou usando as técnicas Integer#[]e redoque aprendi aqui no PPCG. se perder no mato de técnicas divertidas ...

-1 byte: use em n%2vez de n[0]para obter o bit menos significativo. Obrigado, Asone Tuhid !

-1 byte: use um operador ternário em vez de uma expressão booleana. Obrigado, Asone Tuhid !

-10 bytes: use o operador XOR para evitar digitar .prime?duas vezes ... Esta é a resposta de Asone Tuhid tanto quanto a minha agora :)

-4 bytes: não há mal nenhum em verificar valores pares de n. Asone Tuhid é ininterrupto.

Ungolfed:

->n,k{
  n += 1;                   # Increment n
  (-k..k).all?{|i|          # In the set [n-2*k, n+2*k], is every number
    (i*2+n).prime? ^ (i!=0) #    EITHER prime XOR different from n itself?
  } ? n                     # If yes, return the current value of n
  : redo                    # Otherwise, restart the block
}
benj2240
fonte
Oh amável! Obrigado por me manter atualizado sobre a meta, @ Mr.Xcoder.
precisa saber é
1
71 bytes . n%2é menor que n[0]neste caso e ?...:pode ser menor que&&...||
Asone Tuhid
1
-10 bytes :)
Asone Tuhid
1
este é pequeno, mas " n%2+" era inútil
Asone Tuhid
0

Perl 6 , 63 bytes

{$^k;first {[grep *.is-prime,$_-2*$k..$_+2*$k]eqv[$_]},$^a^..*}

Experimente online!

Nwellnhof
fonte