結果

問題 No.920 あかあお
ユーザー SKSK
提出日時 2022-12-20 16:57:26
言語 PHP
(8.3.4)
結果
AC  
実行時間 44 ms / 2,000 ms
コード長 368 bytes
コンパイル時間 127 ms
コンパイル使用メモリ 32,276 KB
実行使用メモリ 31,268 KB
最終ジャッジ日時 2024-11-18 01:54:16
合計ジャッジ時間 1,206 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
30,904 KB
testcase_01 AC 44 ms
30,924 KB
testcase_02 AC 43 ms
30,700 KB
testcase_03 AC 43 ms
31,144 KB
testcase_04 AC 41 ms
30,872 KB
testcase_05 AC 39 ms
30,868 KB
testcase_06 AC 40 ms
31,016 KB
testcase_07 AC 39 ms
30,812 KB
testcase_08 AC 39 ms
31,148 KB
testcase_09 AC 39 ms
31,268 KB
testcase_10 AC 37 ms
30,972 KB
testcase_11 AC 40 ms
30,976 KB
testcase_12 AC 39 ms
30,780 KB
testcase_13 AC 40 ms
30,972 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
No syntax errors detected in Main.php

ソースコード

diff #

<?php

[$x,$y,$z] = explode(" ",trim(fgets(STDIN)));
$ans = 0;

if ($x >= $y && ($x - $y) >= $z) {
    $ans += $y;
    $ans += $z;
}elseif ($x < $y && ($y - $x) >= $z) {
    $ans += $x;
    $ans += $z;
}elseif ($x >= $y && ($x - $y) < $z) {
    $ans += $y;
    $ans += floor(($x -$y + $z)/2);
}else {
    $ans += $x;
    $ans += floor(($y - $x + $z)/2);
}


echo $ans;
0