結果

問題 No.126 2基のエレベータ
ユーザー papinianuspapinianus
提出日時 2017-02-01 12:05:13
言語 PHP
(8.3.4)
結果
WA  
実行時間 -
コード長 619 bytes
コンパイル時間 71 ms
コンパイル使用メモリ 30,688 KB
実行使用メモリ 30,900 KB
最終ジャッジ日時 2024-06-06 11:16:01
合計ジャッジ時間 2,065 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
30,612 KB
testcase_01 AC 37 ms
30,388 KB
testcase_02 WA -
testcase_03 AC 38 ms
30,384 KB
testcase_04 AC 37 ms
30,584 KB
testcase_05 AC 36 ms
30,508 KB
testcase_06 AC 36 ms
30,608 KB
testcase_07 AC 37 ms
30,632 KB
testcase_08 AC 38 ms
30,608 KB
testcase_09 AC 36 ms
30,628 KB
testcase_10 AC 37 ms
30,576 KB
testcase_11 AC 38 ms
30,552 KB
testcase_12 AC 37 ms
30,560 KB
testcase_13 AC 37 ms
30,824 KB
testcase_14 AC 38 ms
30,608 KB
testcase_15 AC 38 ms
30,448 KB
testcase_16 AC 38 ms
30,892 KB
testcase_17 AC 37 ms
30,600 KB
testcase_18 AC 38 ms
30,828 KB
testcase_19 AC 39 ms
30,900 KB
testcase_20 AC 37 ms
30,800 KB
testcase_21 AC 38 ms
30,496 KB
testcase_22 AC 38 ms
30,800 KB
testcase_23 AC 38 ms
30,800 KB
testcase_24 AC 37 ms
30,664 KB
testcase_25 AC 37 ms
30,796 KB
testcase_26 AC 38 ms
30,564 KB
testcase_27 AC 37 ms
30,592 KB
testcase_28 AC 37 ms
30,740 KB
testcase_29 AC 37 ms
30,568 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
No syntax errors detected in Main.php

ソースコード

diff #

<?php
list($a, $b, $s) = explode(" ", trim(fgets(STDIN)));

if(a_callable($a, $b, $s))
{
    echo cost($a, $s);
} else {
    $path1 = transit($b, $s, 1, $a);
    if($a != 0) {
        $path2 = transit($b, $s, $a, $a);
        $path1 = min($path1, $path2);
    }
    echo $path1;
}
echo PHP_EOL;

function a_callable($a, $b, $s) {
    $patha = abs($s - $a);
    $pathb = abs($s - $b);
    if($patha <= $pathb) {
        return true;
    }
    return false;
}

function cost($a, $s) {
    return abs($s - $a) + $s;
}

function transit($a, $s, $p, $p_prev) {
    return abs($s - $a) + abs($s - $p) + cost($p_prev, $p);
}

0