had no javac installed and therefore copied it directly to c (nice that the language keywords are that similar so it took a couple of minutes only). Worked out of the box.
int extra = n%7;
int sum = (n/7)*23 + 2;
switch(extra)
{
case 0:
sum+=0;
break;
case 1:
sum+=1;
break;
case 2:
sum+=3;
break;
case 3:
sum+=6;
break;
case 4:
sum+=11;
break;
case 5:
sum+=17;
break;
case 6:
sum+=23;
break;
}
return sum;
works for inputs 'n' greater than 7
No need for looping nor recursion... too bad he didn't put a really huge number into the depth.
<html>
<script language="javascript" type="text/javascript">
function mycalc() {
var plus = new Array(0,1,2,3,5,6,6);
sum = 2302;
j=0;
for (i=700;i<11590;i++) {
sum+=plus[j];
j++;
if (j==7) {j=0;}
document.writeln("<br/>",i,"->",sum);
}
}
</script>
<p><script language="javascript" type="text/javascript">mycalc()</script> </p>
</body>
</html>
public static void main(String[] args) {
long[] d = new long[11590];
d[0] = 1;
for (int i = 1; i <= 11589; i++) {
d = d[i-1] + (i % 7) + ((((d[i-1] ^ i) & 3) == 0) ? 1 : 0);
}
System.out.println(d[11589]);
}
simply do a memorization and use bitwise operation to do modulo
I just avoided stack issues by using different values, i.e. instead of calc(11589) I ran calc(9000) and changed the code to (29574 was the result of calc(9000)):