結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 AC 38 ms
30,692 KB
testcase_03 AC 37 ms
30,392 KB
testcase_04 AC 37 ms
30,860 KB
testcase_05 WA -
testcase_06 AC 36 ms
30,616 KB
testcase_07 WA -
testcase_08 AC 35 ms
30,604 KB
testcase_09 AC 36 ms
30,500 KB
testcase_10 AC 37 ms
30,588 KB
testcase_11 AC 37 ms
30,908 KB
testcase_12 AC 36 ms
30,552 KB
testcase_13 AC 36 ms
31,032 KB
testcase_14 AC 36 ms
30,464 KB
testcase_15 AC 36 ms
30,596 KB
testcase_16 WA -
testcase_17 WA -
testcase_18 AC 35 ms
30,792 KB
testcase_19 AC 36 ms
30,952 KB
testcase_20 WA -
testcase_21 AC 35 ms
30,600 KB
testcase_22 AC 33 ms
30,924 KB
testcase_23 AC 33 ms
30,664 KB
testcase_24 AC 33 ms
30,692 KB
testcase_25 AC 32 ms
30,856 KB
testcase_26 WA -
testcase_27 WA -
testcase_28 AC 33 ms
30,404 KB
testcase_29 AC 33 ms
30,820 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, $a);
    $path2 = transit($b, $s, 1, $a);
    echo min($path1, $path2);
}
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, $pick = 0) {
    if($pick) {$pick = abs($pick - $a);}
    return abs($s - $a) + cost($s, $p) + $pick;
    // return abs($s - $a) + abs($s - $p) + $p;
}

0