結果

問題 No.139 交差点
ユーザー papinianuspapinianus
提出日時 2016-10-19 12:38:55
言語 PHP
(8.3.4)
結果
AC  
実行時間 41 ms / 5,000 ms
コード長 838 bytes
コンパイル時間 2,651 ms
コンパイル使用メモリ 30,580 KB
実行使用メモリ 31,388 KB
最終ジャッジ日時 2024-11-22 15:07:29
合計ジャッジ時間 5,055 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
31,140 KB
testcase_01 AC 38 ms
31,072 KB
testcase_02 AC 39 ms
31,104 KB
testcase_03 AC 40 ms
31,060 KB
testcase_04 AC 39 ms
31,180 KB
testcase_05 AC 39 ms
30,956 KB
testcase_06 AC 39 ms
31,388 KB
testcase_07 AC 39 ms
31,172 KB
testcase_08 AC 39 ms
30,968 KB
testcase_09 AC 38 ms
30,844 KB
testcase_10 AC 39 ms
31,072 KB
testcase_11 AC 39 ms
31,060 KB
testcase_12 AC 39 ms
31,292 KB
testcase_13 AC 39 ms
31,032 KB
testcase_14 AC 38 ms
31,164 KB
testcase_15 AC 39 ms
31,040 KB
testcase_16 AC 41 ms
30,940 KB
testcase_17 AC 40 ms
31,136 KB
testcase_18 AC 40 ms
31,068 KB
testcase_19 AC 40 ms
30,900 KB
testcase_20 AC 39 ms
31,056 KB
testcase_21 AC 40 ms
31,008 KB
testcase_22 AC 39 ms
30,996 KB
testcase_23 AC 39 ms
31,176 KB
testcase_24 AC 38 ms
30,844 KB
testcase_25 AC 40 ms
31,080 KB
testcase_26 AC 39 ms
30,948 KB
testcase_27 AC 38 ms
31,004 KB
testcase_28 AC 39 ms
31,376 KB
testcase_29 AC 39 ms
30,956 KB
testcase_30 AC 38 ms
31,348 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
No syntax errors detected in Main.php

ソースコード

diff #

<?php
$pos = 0;
$now = 0;
list($trafficCnt, $goal) = explode(" ",trim(fgets(STDIN)));
for(;$trafficCnt;$trafficCnt--)
{
    list($trafficStart, $trafficWidth, $trafficDuration) = explode(" ",trim(fgets(STDIN)));
    list($pos, $now) = arrive($pos, $trafficStart, $now);
    list($pos, $now) = accross($pos, $trafficWidth, $trafficDuration, $now);
}
if($pos < $goal)
{
    list($pos, $now) = arrive($pos, $goal, $now);
}
echo $now.PHP_EOL;

function arrive($from, $to, $now = 0)
{
    $dist = $to - $from;
    return [$to, $now+$dist];
}

function accross($from, $width, $duration, $now)
{
    $trafficTime = $now % ($duration * 2);
    if($trafficTime + $width <= $duration)
    {
        return [$from + $width, $now + $width];
    }
    else
    {
        return [$from + $width ,$now + ($duration * 2 - $trafficTime) + $width];
    }
}
0