結果

問題 No.561 東京と京都
ユーザー oga00826oga00826
提出日時 2019-06-25 14:49:36
言語 PHP
(8.3.4)
結果
WA  
実行時間 -
コード長 861 bytes
コンパイル時間 901 ms
コンパイル使用メモリ 30,968 KB
実行使用メモリ 31,424 KB
最終ジャッジ日時 2024-06-22 23:55:19
合計ジャッジ時間 1,849 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 41 ms
30,924 KB
testcase_02 AC 41 ms
31,000 KB
testcase_03 AC 41 ms
31,044 KB
testcase_04 WA -
testcase_05 AC 41 ms
31,124 KB
testcase_06 AC 41 ms
31,208 KB
testcase_07 WA -
testcase_08 AC 41 ms
31,132 KB
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 AC 40 ms
31,116 KB
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
権限があれば一括ダウンロードができます
コンパイルメッセージ
No syntax errors detected in Main.php

ソースコード

diff #

<?php

list($days, $cost) = explode(" ", trim(fgets(STDIN)));
$salary = 0;
$now_plase = "";

for ($i=1; $i<=$days; $i++) {

    list($tokyo, $kyoto) = explode(" ", trim(fgets(STDIN)));

    // 最初は東京に居る
    if ($i == 1) {

        $tokyo_salary = $tokyo;
        $kyoto_salary = $kyoto - $cost;

    } else {

        if ($now_plase == 'tokyo') {
            $tokyo_salary = $tokyo;
            $kyoto_salary = $kyoto - $cost;
        } elseif ($now_plase == 'kyoto') {
            $tokyo_salary = $tokyo - $cost;
            $kyoto_salary = $kyoto;
        }

    }

    $now_plase = ($tokyo_salary > $kyoto_salary) ? 'tokyo' : 'kyoto';

    if ($tokyo_salary > $kyoto_salary) {
        $salary = $salary + $tokyo_salary;
    } elseif ($kyoto_salary > $tokyo_salary)  {
        $salary = $salary + $kyoto_salary;
    }
    
}

echo $salary."\n";
0