Certains solitaires

10

Je sais, je sais, encore un autre défi primordial ...

en relation

Un premier est un nombre premier solitaire (ou isolé) de ptelle sorte que p-2, p+2, p-4, p+4... p-2k, p+2kpour certains ksont tous composite. Nous appelons un tel nombre premier un nombre kpremier isolé.

Par exemple, un nombre premier 5 fois isolé est 211, car tous 201, 203, 205, 207, 209, 213, 215, 217, 219, 221sont composites. ( p-2*5=201, p-2*4=203, Etc.)

Défi

Etant donné deux entiers d'entrée, n > 3et k > 0, émet le plus petit knombre premier isolé du temps qui est strictement supérieur à n.

Par exemple, pour k = 5et tout ndans la plage 4 ... 210, la sortie devrait être 211, car il s'agit du plus petit nombre premier isolé 5e fois strictement supérieur à l'entrée n.

Exemples

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

Règles

  • Le cas échéant, vous pouvez supposer que l'entrée / sortie s'adaptera au type Integer natif de votre langue.
  • L'entrée et la sortie peuvent être fournies par n'importe quelle méthode pratique .
  • Un programme complet ou une fonction sont acceptables. S'il s'agit d'une fonction, vous pouvez renvoyer la sortie plutôt que de l'imprimer.
  • Les failles standard sont interdites.
  • Il s'agit de donc toutes les règles de golf habituelles s'appliquent et le code le plus court (en octets) l'emporte.
AdmBorkBork
la source
Un nombre premier isolé 3 fois est-il également un nombre premier isolé 2 fois?
Erik the Outgolfer
@EriktheOutgolfer Les deux derniers cas de test semblent en effet le confirmer.
Kevin Cruijssen
1
@KevinCruijssen Les cas de test ne font pas partie de la spécification de défi.
Erik the Outgolfer
1
@EriktheOutgolfer Oui, un kth fois isolé est aussi, par définition, un k-1th, k-2th, etc.
AdmBorkBork
@AdmBorkBork Je voulais juste vérifier, merci.
Erik the Outgolfer

Réponses:

3

Gelée , 17 13 octets

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

Essayez-le en ligne!

Comment ça fonctionne

‘ç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
la source
3

Husk , 13 octets

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

Essayez-le en ligne!

Explication

Assez simple.

ḟ§=;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
la source
2

Java 8, 144 143 octets

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

Explication:

Essayez-le en ligne.

(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
la source
2

Python 2 , 105 104 bytes

-1 octet grâce aux 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

Essayez-le en ligne!

Barre
la source
2

Stax , 14 octets

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

Exécuter et déboguer

Il s'agit de la représentation ascii correspondante.

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
récursif
la source
2

JavaScript (Node.js) , 94 92 89 octets

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)

Essayez-le en ligne!

Mystérieusement, d'autres golfs finissent par déborder. Seul cela fonctionne à la taille de 14000.

Enfin un golf qui ne finira pas par déborder à 14000.

Explication

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
la source
1

C (gcc) , 113 octets

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

Essayez-le en ligne!

Jonathan Frech
la source
1

Ruby + -rprime, 73 71 61 57 octets

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

Essayez-le en ligne!

C'est bon d'apprendre! J'utilise les techniques Integer#[]et redoque j'ai apprises ici sur PPCG. se perdre dans les mauvaises herbes des techniques amusantes ...

-1 octet: utilisez n%2au lieu de n[0]pour obtenir le bit le moins significatif. Merci, Asone Tuhid !

-1 octet: utilisez un opérateur ternaire au lieu d'une expression booléenne. Merci, Asone Tuhid !

-10 octets: utilisez l'opérateur XOR pour éviter de taper .prime?deux fois ... C'est tout autant la réponse d' Asone Tuhid que la mienne :)

-4 octets: il n'y a aucun mal à vérifier les valeurs paires de n. Asone Tuhid est non-stop.

Non golfé:

->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
la source
Oh, adorable! Merci de m'avoir mis à jour sur la méta, @ Mr.Xcoder.
benj2240
1
71 octets . n%2est plus court que n[0]dans ce cas et ?...:peut être plus court que&&...||
Asone Tuhid
1
-10 octets :)
Asone Tuhid
1
celui-ci est petit mais il s'avère que " n%2+" était inutile
Asone Tuhid
0

Perl 6 , 63 octets

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

Essayez-le en ligne!

nwellnhof
la source