ミッション1 / ミッション2 / ミッション3 / 共通解
https://paiza.jp/poh/enkoi
1問目を全問正解しないと2問目は読めないので、がんばって解きましょう。
がんばるほどのものでもないですが。
<?php
$input = file('php://stdin', FILE_IGNORE_NEW_LINES|FILE_SKIP_EMPTY_LINES);
array_shift($input);
$total = 0;
foreach($input as $val){
$tmp = explode(' ', $val);
if($tmp[0] > $tmp[1]){
$total += ($tmp[0] - $tmp[1]) * $tmp[2];
}
}
print($total);
結果。
https://paiza.jp/poh/enkoi-third/f4809593
2問目もまだ何も考えずに解ける問題です。