Java 10, 195 194 184 182 bytes
n->{var L=new java.util.Stack();int i=1,k,x,s,r=0;for(;i++<n;){for(k=1;i%++k>0;);if(k==i)L.add(i);}for(x=L.size(),i=0;i<x;)for(k=i++,s=0;k<x;r+=s==n?1:0)s+=(int)L.get(k++);return r;}
-1 byte gracias a @ceilingcat .
-10 bytes gracias a @SaraJ .
Pruébalo en línea.
Explicación:
n->{ // Method with integer as both parameter and return-type
var L=new java.util.Stack();
// List of primes, starting empty
int i=1,k,x,s, // Temp integers
r=0; // Result-counter, starting at 0
for(;i++<n;){ // Loop `i` in the range [2, `n`]
for(k=1; // Set `k` to 1
i%++k>0;); // Inner loop which increases `k` by 1 before every iteration,
// and continues as long as `i` is not divisible by `k`
if(k==i) // If `k` is now still the same as `i`; a.k.a. if `i` is a prime:
L.add(i);} // Add the prime to the List
for(x=L.size(), // Get the amount of primes in the List
i=0;i<x;) // Loop `i` in the range [0, amount_of_primes)
for(s=0, // (Re)set the sum to 0
k=i++;k<x; // Inner loop `k` in the range [`i`, amount_of_primes)
r+=s==n? // After every iteration, if the sum is equal to the input:
1 // Increase the result-counter by 1
: // Else:
0) // Leave the result-counter the same by adding 0
s+=(int)L.get(k++);
// Add the next prime (at index `k`) to the sum
return r;} // And finally return the result-counter
Es básicamente similar a las respuestas de Jelly o 05AB1E , solo 190 bytes más. XD
Aquí una comparación para cada una de las partes, agregada solo por diversión (y para ver por qué Java es tan detallado y estos lenguajes de golf son tan poderosos):
- Tome la entrada: (Jelly: 0 bytes) implícitamente ; (05AB1E: 0 bytes) implícitamente ; (Java 10: 5 bytes)
n->{}
- Cree una lista de primos en el rango
[2, n]
: (Jelly: 2 bytes) ÆR
; (05AB1E: 2 bytes) ÅP
; (Java 10: 95 bytes)var L=new java.util.Stack();int i=1,k,x,s,r=0;for(;i++<n;){for(k=1;i%++k>0;);if(k==i)L.add(i);}
- Obtenga todas las sublistas continuas: (Gelatina: 1 byte)
Ẇ
; (05AB1E: 1 byte) Œ
; (Java 10: 55 bytes)for(x=L.size(),i=0;i<x;)for(k=i++;k<x;)
y(int)L.get(k++);
- Suma cada sublista: (Gelatina: 1 byte)
§
; (05AB1E: 1 byte) O
; (Java 10: 9 bytes) ,s
y ,s=0
ys+=
- Cuente los que son iguales a la entrada: (Gelatina: 1 byte)
ċ
; (05AB1E: 2 bytes) QO
; (Java 10: 15 bytes) ,r=0
yr+=s==n?1:0
- Salida del resultado: (Jelly: 0 bytes) implícitamente ; (05AB1E: 0 bytes) implícitamente ; (Java 10: 9 bytes)
return r;
2æR
es lo mismo queÆR