結果

問題 No.394 ハーフパイプ(1)
ユーザー kawacchukawacchu
提出日時 2019-03-16 17:45:56
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 33 ms / 2,000 ms
コード長 148 bytes
コンパイル時間 128 ms
コンパイル使用メモリ 10,720 KB
実行使用メモリ 10,400 KB
最終ジャッジ日時 2023-09-14 15:23:04
合計ジャッジ時間 1,426 ms
ジャッジサーバーID
(参考情報)
judge11 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
10,292 KB
testcase_01 AC 32 ms
10,328 KB
testcase_02 AC 31 ms
10,336 KB
testcase_03 AC 32 ms
10,276 KB
testcase_04 AC 32 ms
10,288 KB
testcase_05 AC 32 ms
10,276 KB
testcase_06 AC 33 ms
10,400 KB
testcase_07 AC 31 ms
10,236 KB
testcase_08 AC 32 ms
10,192 KB
testcase_09 AC 31 ms
10,228 KB
testcase_10 AC 32 ms
10,232 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import statistics
from decimal import Decimal

L = sorted(list(map(int,input().split())))[1:-1]
me = statistics.mean(L)
print(round(Decimal(me),2))
0