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 graças a @ceilingcat .
-10 bytes graças a @SaraJ .
Experimente online.
Explicação:
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
É basicamente semelhante às respostas Jelly ou 05AB1E , apenas 190 bytes a mais. XD
Aqui uma comparação para cada uma das partes, adicionada apenas por diversão (e para ver por que Java é tão detalhado e essas linguagens de golfe são tão poderosas):
- Pegue a entrada: (geléia: 0 bytes) implicitamente ; (05AB1E: 0 bytes) implicitamente ; (Java 10: 5 bytes)
n->{}
- Crie uma lista de números primos no intervalo
[2, n]
: (Geléia: 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);}
- Obter todas as sub-listas contínuas: (Jelly: 1 byte)
Ẇ
; (05AB1E: 1 byte) Œ
; (Java 10: 55 bytes) for(x=L.size(),i=0;i<x;)for(k=i++;k<x;)
e(int)L.get(k++);
- Soma cada sub-lista: (Geléia: 1 byte)
§
; (05AB1E: 1 byte) O
; (Java 10: 9 bytes) ,s
e ,s=0
es+=
- Contar aqueles iguais à entrada: (Geléia: 1 byte)
ċ
; (05AB1E: 2 bytes) QO
; (Java 10: 15 bytes) ,r=0
er+=s==n?1:0
- Saída do resultado: (Geléia: 0 bytes) implicitamente ; (05AB1E: 0 bytes) implicitamente ; (Java 10: 9 bytes)
return r;
2æR
é o mesmo queÆR