結果

問題 No.394 ハーフパイプ(1)
ユーザー すーみんすーみん
提出日時 2018-05-25 10:18:13
言語 PHP
(8.3.4)
結果
AC  
実行時間 39 ms / 2,000 ms
コード長 220 bytes
コンパイル時間 1,477 ms
コンパイル使用メモリ 31,888 KB
実行使用メモリ 31,404 KB
最終ジャッジ日時 2024-06-28 17:53:31
合計ジャッジ時間 2,448 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
31,076 KB
testcase_01 AC 35 ms
31,080 KB
testcase_02 AC 36 ms
30,900 KB
testcase_03 AC 37 ms
31,352 KB
testcase_04 AC 37 ms
31,320 KB
testcase_05 AC 39 ms
31,056 KB
testcase_06 AC 35 ms
31,160 KB
testcase_07 AC 36 ms
31,252 KB
testcase_08 AC 36 ms
31,404 KB
testcase_09 AC 36 ms
31,216 KB
testcase_10 AC 36 ms
31,220 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
No syntax errors detected in Main.php

ソースコード

diff #

<?php
$score = explode(" ",trim(fgets(STDIN)));
$max = max($score);
$min = min($score);
$resultScore = 0;
foreach ($score as $value) $resultScore += $value;
echo number_format(round(($resultScore -$max - $min) / 4,2),2);
0