You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

25 lines
507 B
PHTML

9 years ago
<?php
/*
9 years ago
* Gnieark's anwser to euler problem 26
* https://projecteuler.net/problem=26
9 years ago
*/
9 years ago
$beastDenominateur=0;
$longestCycle=0;
for ($denominateur=2; $denominateur < 1000; $denominateur ++){
$reste=1;
$restes=array();
$count=0;
while (!in_array($reste,$restes)){
$restes[]=$reste;
$reste=$reste*10;
$reste=fmod($reste,$denominateur);
9 years ago
$count++;
9 years ago
}
if($count > $longestCycle){
$longestCycle=$count;
$beastDenominateur=$denominateur;
}
9 years ago
}
9 years ago
echo $beastDenominateur."\n";