結果

問題 No.394 ハーフパイプ(1)
ユーザー j0tdj0td
提出日時 2018-01-16 20:31:22
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 33 ms / 2,000 ms
コード長 127 bytes
コンパイル時間 693 ms
コンパイル使用メモリ 10,496 KB
実行使用メモリ 10,436 KB
最終ジャッジ日時 2023-08-25 19:52:07
合計ジャッジ時間 1,188 ms
ジャッジサーバーID
(参考情報)
judge13 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
10,436 KB
testcase_01 AC 32 ms
10,160 KB
testcase_02 AC 32 ms
10,192 KB
testcase_03 AC 33 ms
10,376 KB
testcase_04 AC 31 ms
10,348 KB
testcase_05 AC 31 ms
10,412 KB
testcase_06 AC 31 ms
10,200 KB
testcase_07 AC 32 ms
10,184 KB
testcase_08 AC 32 ms
10,380 KB
testcase_09 AC 31 ms
10,348 KB
testcase_10 AC 31 ms
10,320 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from statistics import mean

scores = list(map(int, input().split()))
scores.sort()
print('{:.2f}'.format(mean(scores[1:-1])))
0