print-Hello-World-/test.php
2020-09-14 10:17:03 -05:00

24 lines
308 B
PHP

<?php
// PHP
function gcd(int $a, int $b) {
if ($b > 0) return gcd($b, $a % $b);
else return $a;
}
echo "test\n";
const N = 1000;
$A = array();
for ($i = 0; $i < N; $i++) {
$A[$i] = $i;
}
$ans = 0;
foreach ($A as $i) {
foreach ($A as $j) {
$ans += gcd($i, $j);
}
}
echo $ans;