codingame/FACILE/Onboarding/script.php
2015-03-02 19:42:39 +01:00

28 lines
588 B
PHP

<?php
/**
* CodinGame planet is being attacked by slimy insectoid aliens.
**/
$u = 0;
// game loop
while (TRUE)
{
fscanf(STDIN, "%s",
$enemy1 // name of enemy 1
);
fscanf(STDIN, "%d",
$dist1 // distance to enemy 1
);
fscanf(STDIN, "%s",
$enemy2 // name of enemy 2
);
fscanf(STDIN, "%d",
$dist2 // distance to enemy 2
);
// Write an action using echo(). DON'T FORGET THE TRAILING \n
// To debug (equivalent to var_dump): error_log(var_export($var, true));
echo $dist2 < $dist1 ? $enemy2 : $enemy1, "\n";
}
?>